-- MySQL dump 10.13  Distrib 5.5.54, for Linux (x86_64)
--
-- Host: localhost    Database: fowdwebs_wp183
-- ------------------------------------------------------
-- Server version	5.5.54-cll

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

--
-- Table structure for table `wprj_commentmeta`
--

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

--
-- Dumping data for table `wprj_commentmeta`
--

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

--
-- Table structure for table `wprj_comments`
--

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

--
-- Dumping data for table `wprj_comments`
--

LOCK TABLES `wprj_comments` WRITE;
/*!40000 ALTER TABLE `wprj_comments` DISABLE KEYS */;
INSERT INTO `wprj_comments` VALUES (1,1,'Mr WordPress','','https://wordpress.org/','','2016-03-24 14:32:01','2016-03-24 14:32:01','Hi, this is a comment.\nTo delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wprj_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_links`
--

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

--
-- Dumping data for table `wprj_links`
--

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

--
-- Table structure for table `wprj_maxbuttons_collections`
--

DROP TABLE IF EXISTS `wprj_maxbuttons_collections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_maxbuttons_collections` (
  `meta_id` int(11) NOT NULL AUTO_INCREMENT,
  `collection_id` int(11) NOT NULL,
  `collection_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `collection_value` mediumtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_maxbuttons_collections`
--

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

--
-- Table structure for table `wprj_maxbuttons_collections_trans`
--

DROP TABLE IF EXISTS `wprj_maxbuttons_collections_trans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_maxbuttons_collections_trans` (
  `name` varchar(1000) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `expire` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_maxbuttons_collections_trans`
--

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

--
-- Table structure for table `wprj_maxbuttonsv3`
--

DROP TABLE IF EXISTS `wprj_maxbuttonsv3`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_maxbuttonsv3` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `cache` mediumtext COLLATE utf8mb4_unicode_ci,
  `basic` mediumtext COLLATE utf8mb4_unicode_ci,
  `color` mediumtext COLLATE utf8mb4_unicode_ci,
  `dimension` mediumtext COLLATE utf8mb4_unicode_ci,
  `border` mediumtext COLLATE utf8mb4_unicode_ci,
  `gradient` mediumtext COLLATE utf8mb4_unicode_ci,
  `text` mediumtext COLLATE utf8mb4_unicode_ci,
  `icon` mediumtext COLLATE utf8mb4_unicode_ci,
  `container` mediumtext COLLATE utf8mb4_unicode_ci,
  `advanced` mediumtext COLLATE utf8mb4_unicode_ci,
  `responsive` mediumtext COLLATE utf8mb4_unicode_ci,
  `meta` mediumtext COLLATE utf8mb4_unicode_ci,
  `google` mediumtext COLLATE utf8mb4_unicode_ci,
  `updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_maxbuttonsv3`
--

LOCK TABLES `wprj_maxbuttonsv3` WRITE;
/*!40000 ALTER TABLE `wprj_maxbuttonsv3` DISABLE KEYS */;
INSERT INTO `wprj_maxbuttonsv3` VALUES (1,'Call Now','publish','.maxbutton-1.maxbutton.maxbutton-call-now{position:relative;text-decoration:none;display:inline-block;border-color:#d33;box-shadow-color:#333;width:340px;height:60px;border-top-left-radius:30px;border-top-right-radius:30px;border-bottom-left-radius:30px;border-bottom-right-radius:30px;border-style:solid;border-width:0px;background:rgba(59, 191, 94, 1);-pie-background:linear-gradient(rgba(59, 191, 94, 1) 45%, rgba(112, 191, 133, 1));background:-webkit-gradient(linear, left top, left bottom, color-stop(45%, rgba(59, 191, 94, 1)), color-stop(1, rgba(112, 191, 133, 1)));background:-moz-linear-gradient(rgba(59, 191, 94, 1) 45%, rgba(112, 191, 133, 1));background:-o-linear-gradient(rgba(59, 191, 94, 1) 45%, rgba(112, 191, 133, 1));background:linear-gradient(rgba(59, 191, 94, 1) 45%, rgba(112, 191, 133, 1))}.maxbutton-1.maxbutton:hover.maxbutton-call-now{border-color:#d33;box-shadow-color:#333;background:rgba(112, 191, 133, 1);-pie-background:linear-gradient(rgba(112, 191, 133, 1) 45%, rgba(59, 191, 94, 1));background:-webkit-gradient(linear, left top, left bottom, color-stop(45%, rgba(112, 191, 133, 1)), color-stop(1, rgba(59, 191, 94, 1)));background:-moz-linear-gradient(rgba(112, 191, 133, 1) 45%, rgba(59, 191, 94, 1));background:-o-linear-gradient(rgba(112, 191, 133, 1) 45%, rgba(59, 191, 94, 1));background:linear-gradient(rgba(112, 191, 133, 1) 45%, rgba(59, 191, 94, 1))}.maxbutton-1.maxbutton.maxbutton-call-now .mb-icon{padding-top:12px;padding-right:18px;padding-bottom:0px;padding-left:21px;line-height:0px;display:block;background-color:unset;float:left}.maxbutton-1.maxbutton.maxbutton-call-now .mb-icon .fa.fa-phone{color:#fff;font-size:40px}.maxbutton-1.maxbutton:hover.maxbutton-call-now .mb-icon .fa.fa-phone{color:#fff}.maxbutton-1.maxbutton.maxbutton-call-now .mb-text{color:#fff;font-family:Georgia;font-size:19px;text-align:left;font-style:normal;font-weight:normal;padding-top:10px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset;position:relative}.maxbutton-1.maxbutton:hover.maxbutton-call-now .mb-text{color:#fff}.maxbutton-1.maxbutton.maxbutton-call-now .mb-text2{color:#fff;font-family:Georgia;font-size:19px;font-style:normal;font-weight:normal;padding-top:1px;padding-right:25px;padding-bottom:0px;padding-left:25px;text-align:left;line-height:1em;box-sizing:border-box;position:relative;background-color:unset;display:block}.maxbutton-1.maxbutton:hover.maxbutton-call-now .mb-text2{color:#fff}','{\"name\":\"Call Now\",\"status\":\"publish\",\"description\":\"\",\"url\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#3bbf5e\",\"gradient_end_color\":\"#70bf85\",\"border_color\":\"#dd3333\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#ffffff\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#70bf85\",\"gradient_end_color_hover\":\"#3bbf5e\",\"border_color_hover\":\"#dd3333\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#ffffff\"}','{\"button_width\":340,\"button_height\":60}','{\"radius_top_left\":30,\"radius_top_right\":30,\"radius_bottom_left\":30,\"radius_bottom_right\":30,\"border_style\":\"solid\",\"border_width\":0,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":0,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"1\"}','{\"text\":\"Call or Text for Appointment\",\"font\":\"Georgia\",\"font_size\":19,\"text_align\":\"left\",\"font_style\":\"normal\",\"font_weight\":\"normal\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":10,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0,\"text2\":\"320-420-2497\",\"font2\":\"Georgia\",\"font_size2\":19,\"font_style2\":\"normal\",\"font_weight2\":\"normal\",\"padding_top2\":1,\"padding_right2\":25,\"padding_bottom2\":0,\"padding_left2\":25,\"text_align2\":\"left\"}','{\"use_fa_icon\":\"1\",\"fa_icon_value\":\"fa-phone\",\"fa_icon_size\":40,\"icon_id\":\"\",\"icon_url\":\"\",\"icon_alt\":\"\",\"icon_position\":\"left\",\"icon_padding_top\":12,\"icon_padding_right\":18,\"icon_padding_bottom\":0,\"icon_padding_left\":21}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\",\"anchor_data\":\"\",\"anchor_data_value\":\"\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1490024889\",\"modified\":1490368340,\"user_created\":\"flyingorange\",\"user_modified\":\"flyingorange\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','{\"gtrack_enable\":\"0\",\"gtrack_cat\":\"MaxButtons\",\"gtrack_action\":\"click\",\"gtrack_label\":\"\",\"gtrack_value\":\"0\",\"gtrack_interaction\":\"1\"}','2017-03-24 15:12:20','2017-03-20 19:48:09');
/*!40000 ALTER TABLE `wprj_maxbuttonsv3` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_options`
--

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

--
-- Dumping data for table `wprj_options`
--

LOCK TABLES `wprj_options` WRITE;
/*!40000 ALTER TABLE `wprj_options` DISABLE KEYS */;
INSERT INTO `wprj_options` VALUES (1,'siteurl','http://redbarnmn.com','yes'),(2,'home','http://redbarnmn.com','yes'),(3,'blogname','Red Barn Property Inspection','yes'),(4,'blogdescription','Central Minnesota Property Inspectors','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@flyingorangewebdesign.com','yes'),(7,'start_of_week','0','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','5','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'hack_file','0','yes'),(30,'blog_charset','UTF-8','yes'),(31,'moderation_keys','','no'),(32,'active_plugins','a:6:{i:0;s:29:\"gravityforms/gravityforms.php\";i:1;s:45:\"facebook-by-weblizar/facebook-by-weblizar.php\";i:2;s:31:\"genesis-simple-edits/plugin.php\";i:3;s:34:\"genesis-simple-sidebars/plugin.php\";i:4;s:33:\"maxbuttons-pro/maxbuttons-pro.php\";i:5;s:45:\"wp-twitter-feeds/wp-latest-twitter-tweets.php\";}','yes'),(33,'category_base','','yes'),(34,'ping_sites','http://rpc.pingomatic.com/','yes'),(35,'comment_max_links','2','yes'),(36,'gmt_offset','','yes'),(37,'default_email_category','1','yes'),(38,'recently_edited','','no'),(39,'template','genesis','yes'),(40,'stylesheet','redbarnmn','yes'),(41,'comment_whitelist','1','yes'),(42,'blacklist_keys','','no'),(43,'comment_registration','0','yes'),(44,'html_type','text/html','yes'),(45,'use_trackback','0','yes'),(46,'default_role','subscriber','yes'),(47,'db_version','35700','yes'),(48,'uploads_use_yearmonth_folders','1','yes'),(49,'upload_path','','yes'),(50,'blog_public','1','yes'),(51,'default_link_category','2','yes'),(52,'show_on_front','posts','yes'),(53,'tag_base','','yes'),(54,'show_avatars','1','yes'),(55,'avatar_rating','G','yes'),(56,'upload_url_path','','yes'),(57,'thumbnail_size_w','150','yes'),(58,'thumbnail_size_h','150','yes'),(59,'thumbnail_crop','1','yes'),(60,'medium_size_w','300','yes'),(61,'medium_size_h','300','yes'),(62,'avatar_default','mystery','yes'),(63,'large_size_w','1024','yes'),(64,'large_size_h','1024','yes'),(65,'image_default_link_type','none','yes'),(66,'image_default_size','','yes'),(67,'image_default_align','','yes'),(68,'close_comments_for_old_posts','0','yes'),(69,'close_comments_days_old','14','yes'),(70,'thread_comments','1','yes'),(71,'thread_comments_depth','5','yes'),(72,'page_comments','0','yes'),(73,'comments_per_page','50','yes'),(74,'default_comments_page','newest','yes'),(75,'comment_order','asc','yes'),(76,'sticky_posts','a:0:{}','yes'),(77,'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'),(78,'widget_text','a:10:{i:1;a:0:{}i:3;a:3:{s:5:\"title\";s:34:\"Minnesota Home Inspection Services\";s:4:\"text\";s:120:\"Assisting Home Buyers and Sellers in Central Minnesota and the Twin Cities Metro with all of their Home Inspection needs\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:14:\"Meet the Owner\";s:4:\"text\";s:187:\"Welcome to Red Barn Property Inspection LLC.  My name is Charlie Bemis.  I am the owner of the company and I am also the main inspector.  I have been running my own businesses since 2001.\";s:6:\"filter\";b:1;}i:5;a:3:{s:5:\"title\";s:34:\"About Red Barn Property Inspection\";s:4:\"text\";s:874:\"I have an extensive background in plumbing and heating which is extremely beneficial for me being an inspector.  To gain more knowledge about the other systems of a home I attended multiple Kaplan Professional Schools Home Inspector Training Courses.  I firmly believe if you want to stay sharp you have to try to learn something new every day, especially when it comes to what you do for a living.  \r\n\r\nBecause of this I continue to go back for additional training courses at Kaplan to keep myself up to date on all of the issues that arise in the construction and real estate industries.  In addition to training at Kaplan, I take a number of continuing education courses every year through organizations like InterNachi (International Association of Certified Home Inspectors), IAC2 (International Association of Certified Indoor Air Consultants), and BestInspectors.Net.\";s:6:\"filter\";b:1;}i:6;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:886:\"<div class=\"features\">\r\n\r\n<h4>Minnesota Home Inspection Services</h4>\r\n\r\n<div class=\"one-half first\">\r\n\r\n<p>I cover the entire state of Minnesota.  The majority of my work is in Central Minnesota and the Twin Cities Metro area, but don’t be afraid to contact me for a quote on any of my services, no matter where you are located. Service Locations include:</p>\r\n\r\n<div class=\"one-half first\">\r\n<ul>\r\n<li>St. Cloud</li>\r\n<li>Sauk Rapids</li>\r\n<li>Becker</li>\r\n<li>Annandale</li>\r\n<li>Monticello</li>\r\n<li>Big Lake</li>\r\n<li>St. Michael/Albertville</li>\r\n</ul>\r\n</div>\r\n<div class=\"one-half\">\r\n<ul>\r\n<li>Albany</li>\r\n<li>Elk River</li>\r\n<li>Anoka</li>\r\n<li>Maple Grove</li>\r\n<li>Prior Lake</li>\r\n<li>Burnsville</li>\r\n<li>Apple Valley</li>\r\n</ul>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"one-half main-img\">\r\n<img src=\"/wp-content/uploads/2016/03/minnesota-region-outline.png\">\r\n</div>\r\n\r\n</div>\";s:6:\"filter\";b:1;}i:7;a:3:{s:5:\"title\";s:14:\"Why Choose Us?\";s:4:\"text\";s:1121:\"I feel I set myself apart from other inspectors in 3 areas.  First, I have been and continue to be in the construction industry.  To be great at anything you need to be around it continually for long periods of time.  Second, I have been in thousands of homes.  In my opinion there is nothing more valuable than experience, it teaches you things you can\'t learn anywhere else.  Third, on average, I spend more time in a home and with my clients compared to other inspectors.  The most important part of the inspection is the time spent with my clients during the walk through of the property.   I pride myself on being able to communicate with people in a way that is easy to understand and informative.  \r\n\r\nPut all of this together and I guarantee you the best inspection experience out there, I will put my work up against anyone in the industry.  When you hire me you are getting more than just an inspection.  I tell all of my clients I am available to them anytime, even if it’s 10 years from now.  Questions are going to arise down the road and you should feel comfortable being able to call someone for answers.\";s:6:\"filter\";b:1;}i:8;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:69:\"<img src=\"/wp-content/uploads/2016/05/charlie-bemis.jpg\" width=\"250\">\";s:6:\"filter\";b:0;}i:9;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[maxbutton id=\"1\"]\";s:6:\"filter\";b:0;}i:10;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[maxbutton id=\"1\"]\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'uninstall_plugins','a:0:{}','no'),(81,'timezone_string','America/Chicago','yes'),(82,'page_for_posts','0','yes'),(83,'page_on_front','0','yes'),(84,'default_post_format','0','yes'),(85,'link_manager_enabled','0','yes'),(86,'finished_splitting_shared_terms','1','yes'),(87,'site_icon','86','yes'),(88,'medium_large_size_w','768','yes'),(89,'medium_large_size_h','0','yes'),(90,'initial_db_version','35700','yes'),(91,'wprj_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(92,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(93,'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'),(94,'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'),(95,'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'),(96,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'sidebars_widgets','a:11:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:7:\"sidebar\";a:3:{i:0;s:6:\"text-9\";i:1;s:14:\"gform_widget-2\";i:2;s:27:\"weblizar_facebook_likebox-2\";}s:12:\"front-page-1\";a:1:{i:0;s:6:\"text-3\";}s:13:\"home-mid-left\";a:2:{i:0;s:6:\"text-8\";i:1;s:6:\"text-4\";}s:14:\"home-mid-right\";a:1:{i:0;s:6:\"text-5\";}s:13:\"home-mid-wide\";a:1:{i:0;s:6:\"text-7\";}s:12:\"front-page-5\";a:1:{i:0;s:6:\"text-6\";}s:8:\"footer-1\";a:0:{}s:11:\"after-entry\";a:0:{}s:12:\"contact-page\";a:2:{i:0;s:7:\"text-10\";i:1;s:27:\"weblizar_facebook_likebox-3\";}s:13:\"array_version\";i:3;}','yes'),(99,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'cron','a:6:{i:1490387607;a:1:{s:17:\"gravityforms_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1490409121;a:2:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1490409140;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1490452383;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1490456213;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;}}}s:7:\"version\";i:2;}','yes'),(108,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.7.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.7.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.7.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.7.3\";s:7:\"version\";s:5:\"4.7.3\";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:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.7.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.7.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.7.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.7.3\";s:7:\"version\";s:5:\"4.7.3\";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:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.6.4.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.6.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.6.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.6.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.6.4\";s:7:\"version\";s:5:\"4.6.4\";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:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.5.7.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.5.7.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.5.7-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.5.7-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.5.7\";s:7:\"version\";s:5:\"4.5.7\";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:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.4.8.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.4.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.4.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.4.8-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.4.8-partial-2.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.4.8-rollback-2.zip\";}s:7:\"current\";s:5:\"4.4.8\";s:7:\"version\";s:5:\"4.4.8\";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:5:\"4.4.2\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1490367926;s:15:\"version_checked\";s:5:\"4.4.2\";s:12:\"translations\";a:0:{}}','yes'),(124,'can_compress_scripts','1','yes'),(136,'ftp_credentials','a:3:{s:8:\"hostname\";s:16:\"ftp.fowdwebs.com\";s:8:\"username\";s:8:\"fowdwebs\";s:15:\"connection_type\";s:3:\"ftp\";}','yes'),(138,'_site_transient_timeout_wporg_theme_feature_list','1458840883','yes'),(139,'_site_transient_wporg_theme_feature_list','a:4:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:6:\"Layout\";a:9:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";i:3;s:10:\"one-column\";i:4;s:11:\"two-columns\";i:5;s:13:\"three-columns\";i:6;s:12:\"four-columns\";i:7;s:12:\"left-sidebar\";i:8;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(142,'theme_mods_twentysixteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1458830150;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(143,'current_theme','Red Barn Property Inspection','yes'),(144,'theme_mods_genesis','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1458832124;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"header-right\";a:0:{}s:7:\"sidebar\";N;s:11:\"sidebar-alt\";N;}}}','yes'),(145,'theme_switched','','yes'),(146,'widget_featured-page','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(147,'widget_featured-post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(148,'widget_user-profile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(150,'genesis-settings','a:40:{s:13:\"theme_version\";s:5:\"2.4.2\";s:10:\"db_version\";i:2403;s:13:\"first_version\";s:5:\"2.2.7\";s:6:\"update\";i:1;s:20:\"update_email_address\";s:0:\"\";s:8:\"feed_uri\";s:0:\"\";s:17:\"comments_feed_uri\";s:0:\"\";s:11:\"site_layout\";s:15:\"content-sidebar\";s:14:\"comments_posts\";i:1;s:16:\"trackbacks_posts\";i:1;s:15:\"content_archive\";s:4:\"full\";s:21:\"content_archive_limit\";i:0;s:10:\"image_size\";s:9:\"thumbnail\";s:15:\"image_alignment\";s:9:\"alignleft\";s:9:\"posts_nav\";s:7:\"numeric\";s:8:\"blog_cat\";i:0;s:16:\"blog_cat_exclude\";s:0:\"\";s:12:\"blog_cat_num\";i:5;s:14:\"header_scripts\";s:0:\"\";s:14:\"footer_scripts\";s:0:\"\";s:21:\"breadcrumb_front_page\";i:0;s:15:\"breadcrumb_home\";i:0;s:17:\"breadcrumb_single\";i:0;s:15:\"breadcrumb_page\";i:0;s:21:\"breadcrumb_posts_page\";i:0;s:18:\"breadcrumb_archive\";i:0;s:14:\"breadcrumb_404\";i:0;s:21:\"breadcrumb_attachment\";i:0;s:14:\"comments_pages\";i:0;s:25:\"content_archive_thumbnail\";i:0;s:9:\"superfish\";i:0;s:13:\"redirect_feed\";i:0;s:22:\"redirect_comments_feed\";i:0;s:16:\"trackbacks_pages\";i:0;s:12:\"update_email\";i:0;s:10:\"blog_title\";s:0:\"\";s:10:\"nav_extras\";s:0:\"\";s:21:\"nav_extras_twitter_id\";s:0:\"\";s:15:\"style_selection\";s:0:\"\";s:23:\"nav_extras_twitter_text\";s:0:\"\";}','yes'),(151,'genesis-seo-settings','a:30:{s:17:\"semantic_headings\";i:0;s:17:\"append_site_title\";i:0;s:12:\"doctitle_sep\";s:3:\"–\";s:20:\"doctitle_seplocation\";s:5:\"right\";s:23:\"append_description_home\";i:1;s:10:\"home_h1_on\";s:5:\"title\";s:13:\"home_doctitle\";s:0:\"\";s:16:\"home_description\";s:0:\"\";s:13:\"home_keywords\";s:0:\"\";s:12:\"home_noindex\";i:0;s:13:\"home_nofollow\";i:0;s:14:\"home_noarchive\";i:0;s:18:\"canonical_archives\";i:1;s:28:\"head_adjacent_posts_rel_link\";i:0;s:21:\"head_wlwmanifest_link\";i:0;s:14:\"head_shortlink\";i:0;s:19:\"noindex_cat_archive\";i:1;s:19:\"noindex_tag_archive\";i:1;s:22:\"noindex_author_archive\";i:1;s:20:\"noindex_date_archive\";i:1;s:22:\"noindex_search_archive\";i:1;s:21:\"noarchive_cat_archive\";i:0;s:21:\"noarchive_tag_archive\";i:0;s:24:\"noarchive_author_archive\";i:0;s:22:\"noarchive_date_archive\";i:0;s:24:\"noarchive_search_archive\";i:0;s:9:\"noarchive\";i:0;s:5:\"noodp\";i:1;s:6:\"noydir\";i:1;s:11:\"home_author\";i:0;}','yes'),(158,'theme_mods_redbarnmn','a:3:{i:0;b:0;s:19:\"aspire_accent_color\";s:7:\"#cc0000\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}}','yes'),(159,'rewrite_rules','a:78:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s: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:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(166,'1-aspire-image','http://redbarnmn.com/wp-content/uploads/2016/05/midwest-home-background.jpg','yes'),(170,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(182,'recently_activated','a:2:{s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";i:1490023373;s:51:\"arrow-twitter-feed/twitter-feed-by-arrowplugins.php\";i:1490023218;}','yes'),(183,'gse-settings','a:5:{s:9:\"post_info\";s:67:\"[post_date] By [post_author_posts_link] [post_comments] [post_edit]\";s:9:\"post_meta\";s:29:\"[post_categories] [post_tags]\";s:17:\"footer_creds_text\";s:202:\"[footer_copyright before=\"Copyright \"] · [footer_childtheme_link before=\"\" after=\" On\"] [footer_genesis_link url=\"http://www.studiopress.com/\" before=\"\"] · [footer_wordpress_link] · [footer_loginout]\";s:16:\"footer_output_on\";s:1:\"1\";s:13:\"footer_output\";s:190:\"<p>[footer_copyright before=\"Copyright \"] &middot; [footer_childtheme_link before=\"\"] &middot; Design by <a href=\"http://www.flyingorangewebdesign.com/\" target=\"_blank\">Flying Orange</a></p>\";}','yes'),(186,'_site_transient_timeout_available_translations','1458851788','yes'),(187,'_site_transient_available_translations','a:77:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-07 13:09:53\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-12 10:15:45\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-07 20:53:51\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-11 22:42:10\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-08 08:50:29\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-08 13:17:04\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-04 09:40:25\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-23 11:40:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-16 15:34:57\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-26 16:01:40\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-08 22:48:20\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-08 14:19:21\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-29 10:47:54\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-26 16:11:56\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.4.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-01 18:27:32\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-15 11:52:35\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-07 04:39:48\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-14 21:14:29\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-08 13:34:17\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-06 23:10:59\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-25 13:07:29\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-24 15:17:36\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-02 20:27:44\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-13 06:14:13\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-09 18:08:52\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-13 12:28:49\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-07 17:35:10\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:6:\"4.3-RC\";s:7:\"updated\";s:19:\"2015-08-04 06:10:33\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.3-RC/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-23 00:46:01\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-18 06:44:22\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-03 10:31:09\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-31 19:24:20\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-23 06:49:15\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-08 13:47:35\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-09 02:16:19\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-08 17:19:17\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.3.3\";s:7:\"updated\";s:19:\"2015-09-24 15:25:30\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.3/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-13 16:48:03\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-16 18:59:27\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-23 07:33:29\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-04 08:39:26\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-03 14:37:42\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-04 07:13:54\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-21 16:17:50\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-08 00:20:24\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-13 13:43:58\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-25 13:08:14\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-09 08:53:31\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-24 00:12:01\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-08 20:07:24\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-28 05:41:39\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.10\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.10/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-07 10:01:09\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-20 13:35:50\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.4.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-23 18:59:13\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-14 12:19:44\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-08 16:21:37\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-26 19:07:19\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.10\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.10/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-03 17:32:29\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-18 15:58:21\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-24 11:09:36\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-03-21 18:23:26\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-26 11:29:13\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-11-26 00:00:18\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-23 10:30:30\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-09 09:09:51\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-08 23:28:56\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-08 03:22:55\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-11-27 15:51:36\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-17 23:12:27\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.1.10\";s:7:\"updated\";s:19:\"2015-03-26 16:45:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.10/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-01-03 22:04:41\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-09 01:01:25\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-12 22:55:08\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-11 18:51:41\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','yes'),(188,'WPLANG','','yes'),(191,'5-aspire-image','http://redbarnmn.com/wp-content/uploads/2016/03/home-inspection-checklist.jpg','yes'),(230,'_site_transient_timeout_browser_f8c36120b998735f8271f67046cbadb8','1461854120','yes'),(231,'_site_transient_browser_f8c36120b998735f8271f67046cbadb8','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"45.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(254,'_site_transient_timeout_browser_7feaa65b14cf06e774cb32cb4530d9f7','1463493717','yes'),(255,'_site_transient_browser_7feaa65b14cf06e774cb32cb4530d9f7','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"46.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(275,'widget_gform_widget','a:2:{i:2;a:7:{s:5:\"title\";s:13:\"Quick Contact\";s:7:\"form_id\";s:1:\"2\";s:9:\"showtitle\";s:0:\"\";s:4:\"ajax\";s:0:\"\";s:15:\"disable_scripts\";s:0:\"\";s:15:\"showdescription\";s:0:\"\";s:8:\"tabindex\";s:1:\"1\";}s:12:\"_multiwidget\";i:1;}','yes'),(276,'gravityformsaddon_gravityformswebapi_version','1.0','yes'),(278,'gform_enable_background_updates','','yes'),(279,'gform_longtext_ready','1','yes'),(280,'rg_form_version','2.1.3','yes'),(288,'rg_gforms_key','934b1d77e4bfb98ced172063dc2e1ec1','yes'),(289,'gform_enable_noconflict','1','yes'),(290,'rg_gforms_enable_akismet','','yes'),(291,'rg_gforms_currency','USD','yes'),(298,'category_children','a:0:{}','yes'),(432,'7-aspire-image','','yes'),(433,'9-aspire-image','','yes'),(434,'11-aspire-image','','yes'),(529,'auto_core_update_notified','a:4:{s:4:\"type\";s:6:\"manual\";s:5:\"email\";s:30:\"info@flyingorangewebdesign.com\";s:7:\"version\";s:5:\"4.5.3\";s:9:\"timestamp\";i:1467767680;}','yes'),(565,'_site_transient_timeout_browser_4c9717c179f154741a00df005d8e11d2','1472508139','yes'),(566,'_site_transient_browser_4c9717c179f154741a00df005d8e11d2','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"52.0.2743.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(591,'_site_transient_timeout_browser_00cb6228a64f759a1bb585e143526e4f','1485449667','yes'),(592,'_site_transient_browser_00cb6228a64f759a1bb585e143526e4f','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"55.0.2883.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(614,'_site_transient_timeout_browser_89e98a02642e93650a77c5c0a1d9c25e','1489523476','yes'),(615,'_site_transient_browser_89e98a02642e93650a77c5c0a1d9c25e','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"51.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(635,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1490367927;s:7:\"checked\";a:2:{s:7:\"genesis\";s:5:\"2.4.2\";s:9:\"redbarnmn\";s:5:\"1.0.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(672,'_site_transient_timeout_browser_ec09c1f205a8c9a567166203a7884107','1490626384','yes'),(673,'_site_transient_browser_ec09c1f205a8c9a567166203a7884107','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"52.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(687,'_transient_timeout_plugin_slugs','1490388001','no'),(689,'_transient_plugin_slugs','a:8:{i:0;s:19:\"akismet/akismet.php\";i:1;s:45:\"facebook-by-weblizar/facebook-by-weblizar.php\";i:2;s:31:\"genesis-simple-edits/plugin.php\";i:3;s:34:\"genesis-simple-sidebars/plugin.php\";i:4;s:29:\"gravityforms/gravityforms.php\";i:5;s:9:\"hello.php\";i:6;s:33:\"maxbuttons-pro/maxbuttons-pro.php\";i:7;s:45:\"wp-twitter-feeds/wp-latest-twitter-tweets.php\";}','no'),(714,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1490033168','yes'),(715,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"6243\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3836\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3817\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"3344\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2911\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"2651\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:4:\"2356\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2267\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"2183\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"2160\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"2119\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"2091\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"2019\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1984\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1816\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1712\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1692\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1508\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1423\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1336\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1317\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1189\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:4:\"1159\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:4:\"1128\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:4:\"1050\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:4:\"1041\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:4:\"1009\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:4:\"1008\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:4:\"1004\";}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";s:3:\"986\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"959\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"922\";}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";s:3:\"917\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"889\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"887\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"848\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"808\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"807\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"800\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"791\";}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"791\";}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";s:3:\"788\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"781\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";s:3:\"771\";}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"768\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"762\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"754\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"746\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"740\";}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"733\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"721\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"668\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";s:3:\"668\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";s:3:\"664\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";s:3:\"663\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"654\";}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";s:3:\"644\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";s:3:\"642\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"630\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"624\";}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"611\";}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"607\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"607\";}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";s:3:\"602\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";s:3:\"601\";}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";s:3:\"595\";}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";s:3:\"580\";}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";s:3:\"574\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";s:3:\"571\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"567\";}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";s:3:\"564\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"slug\";s:4:\"shop\";s:5:\"count\";s:3:\"557\";}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";s:3:\"555\";}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";s:3:\"546\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"546\";}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"534\";}s:7:\"picture\";a:3:{s:4:\"name\";s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"529\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"523\";}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:\"500\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";s:3:\"497\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";s:3:\"479\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";s:3:\"474\";}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"474\";}s:8:\"pictures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5:\"count\";s:3:\"468\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"463\";}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";s:3:\"459\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";s:3:\"455\";}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:\"451\";}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";s:3:\"450\";}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\"450\";}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";s:3:\"440\";}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";s:3:\"440\";}s:9:\"thumbnail\";a:3:{s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\";s:3:\"439\";}s:6:\"paypal\";a:3:{s:4:\"name\";s:6:\"paypal\";s:4:\"slug\";s:6:\"paypal\";s:5:\"count\";s:3:\"438\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";s:3:\"436\";}s:6:\"upload\";a:3:{s:4:\"name\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"434\";}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";s:3:\"433\";}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";s:3:\"430\";}s:8:\"linkedin\";a:3:{s:4:\"name\";s:8:\"linkedin\";s:4:\"slug\";s:8:\"linkedin\";s:5:\"count\";s:3:\"429\";}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";s:3:\"427\";}}','yes'),(718,'ss-settings','a:1:{s:12:\"contact-page\";a:2:{s:4:\"name\";s:20:\"Contact Page Sidebar\";s:11:\"description\";s:0:\"\";}}','yes'),(727,'widget_weblizar_facebook_likebox','a:3:{i:2;a:10:{s:5:\"title\";s:19:\"Like Us on Facebook\";s:15:\"FacebookPageURL\";s:35:\"https://www.facebook.com/RedBarnPI/\";s:6:\"Header\";s:4:\"true\";s:5:\"Width\";s:3:\"360\";s:6:\"Height\";s:3:\"560\";s:6:\"Stream\";s:4:\"true\";s:9:\"ShowFaces\";s:4:\"true\";s:10:\"ShowBorder\";s:4:\"true\";s:9:\"ForceWall\";s:5:\"false\";s:7:\"FbAppId\";s:15:\"488390501239538\";}i:3;a:10:{s:5:\"title\";s:19:\"Like Us on Facebook\";s:15:\"FacebookPageURL\";s:35:\"https://www.facebook.com/RedBarnPI/\";s:6:\"Header\";s:4:\"true\";s:5:\"Width\";s:3:\"360\";s:6:\"Height\";s:3:\"560\";s:6:\"Stream\";s:4:\"true\";s:9:\"ShowFaces\";s:4:\"true\";s:10:\"ShowBorder\";s:4:\"true\";s:9:\"ForceWall\";s:5:\"false\";s:7:\"FbAppId\";s:15:\"488390501239538\";}s:12:\"_multiwidget\";i:1;}','yes'),(745,'widget_do-etfw','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(750,'do_etfw_options','a:1:{s:14:\"twitter_script\";s:1:\"1\";}','yes'),(756,'widget_wptt_twittertweets','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(764,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1490367927;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.3.3.zip\";}s:45:\"facebook-by-weblizar/facebook-by-weblizar.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"50302\";s:4:\"slug\";s:20:\"facebook-by-weblizar\";s:6:\"plugin\";s:45:\"facebook-by-weblizar/facebook-by-weblizar.php\";s:11:\"new_version\";s:5:\"2.4.6\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/facebook-by-weblizar/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/facebook-by-weblizar.2.4.6.zip\";}s:31:\"genesis-simple-edits/plugin.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:5:\"18201\";s:4:\"slug\";s:20:\"genesis-simple-edits\";s:6:\"plugin\";s:31:\"genesis-simple-edits/plugin.php\";s:11:\"new_version\";s:5:\"2.2.0\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/genesis-simple-edits/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/genesis-simple-edits.2.2.0.zip\";s:6:\"tested\";s:5:\"4.7.3\";s:13:\"compatibility\";b:0;}s:34:\"genesis-simple-sidebars/plugin.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"16069\";s:4:\"slug\";s:23:\"genesis-simple-sidebars\";s:6:\"plugin\";s:34:\"genesis-simple-sidebars/plugin.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/genesis-simple-sidebars/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/genesis-simple-sidebars.2.0.4.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";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:45:\"wp-twitter-feeds/wp-latest-twitter-tweets.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"48971\";s:4:\"slug\";s:16:\"wp-twitter-feeds\";s:6:\"plugin\";s:45:\"wp-twitter-feeds/wp-latest-twitter-tweets.php\";s:11:\"new_version\";s:5:\"1.4.9\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wp-twitter-feeds/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-twitter-feeds.zip\";}}}','yes'),(765,'maxbuttons_version','6.15','yes'),(766,'maxbuttons_used_fonts','a:1:{s:7:\"Georgia\";s:7:\"Georgia\";}','yes'),(767,'maxbuttons_user_level','manage_options','yes'),(768,'maxbuttons_pro_license_key','861372c8fe9e7391034096c0b02cef33','yes'),(769,'maxbuttons_pro_license_activated','1','yes'),(770,'_transient_timeout_maxbuttons_pro_license_lastcheck','1490628821','no'),(771,'_transient_maxbuttons_pro_license_lastcheck','1','no'),(909,'_transient_timeout_list-tweets-RedBarnMN','1490030420','no'),(910,'_transient_list-tweets-RedBarnMN','','no'),(916,'gform_email_count','3','yes'),(923,'_transient_timeout_gform_update_info','1490387990','no'),(924,'_transient_gform_update_info','a:6:{s:12:\"is_valid_key\";s:1:\"1\";s:7:\"version\";s:5:\"2.1.3\";s:3:\"url\";s:166:\"http://s3.amazonaws.com/gravityforms/releases/gravityforms_2.1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=b%2BP7QMjcD8HgSCpyJ3qBD6Q8R1E%3D\";s:15:\"expiration_time\";i:1512626400;s:9:\"offerings\";a:42:{s:12:\"gravityforms\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.1.3\";s:3:\"url\";s:166:\"http://s3.amazonaws.com/gravityforms/releases/gravityforms_2.1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=b%2BP7QMjcD8HgSCpyJ3qBD6Q8R1E%3D\";}s:26:\"gravityformsactivecampaign\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:3:\"url\";s:189:\"http://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_1.4.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=AJVC9p9pBW8UCl9GyT3g0sF8YMo%3D\";}s:20:\"gravityformsagilecrm\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:3:\"url\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=AdsdhYwMJ8GXTCKxVcWv6Amwmvk%3D\";}s:24:\"gravityformsauthorizenet\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.3\";s:3:\"url\";s:185:\"http://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=tVdXO7gF1PKFdkcGZZBNMHe2LbY%3D\";}s:18:\"gravityformsaweber\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.4\";s:3:\"url\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_2.4.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=R9%2B0UrvEz0Q%2Bt3D09k1g5gIF3r4%3D\";}s:21:\"gravityformsbatchbook\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:3:\"url\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=v%2FVAGWTCmIZKwNK8kfVtwMxmhLs%3D\";}s:18:\"gravityformsbreeze\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=ipy3xEU1SXft8u9xRnviS3FLkq4%3D\";}s:27:\"gravityformscampaignmonitor\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.4.1\";s:3:\"url\";s:195:\"http://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_3.4.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=Q3i%2BxtGJqtbmjXAk9MZ56pnhKiI%3D\";}s:20:\"gravityformscampfire\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:3:\"url\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=KZ3pldkSL9vwmUbs8WK96ZQFfdA%3D\";}s:22:\"gravityformscapsulecrm\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:3:\"url\";s:183:\"http://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=DXddC%2F79wd7g06oRJ0ERyHk4bGg%3D\";}s:23:\"gravityformscleverreach\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:3:\"url\";s:187:\"http://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=DI3HXTAHxBVaPa0v%2FKDL%2BJPswHU%3D\";}s:19:\"gravityformscoupons\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.5\";s:3:\"url\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_2.5.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=8j0O%2BJsAvT6kr3nhH4jcTdKkJwI%3D\";}s:17:\"gravityformsdebug\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:3:\"url\";s:0:\"\";}s:19:\"gravityformsdropbox\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=lIGFLSaq6D2edp5IuLUhFzKD980%3D\";}s:16:\"gravityformsemma\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=3q20ebAuquyT%2BzoeNvx%2Bnn8cUAI%3D\";}s:22:\"gravityformsfreshbooks\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.3\";s:3:\"url\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=4setnkb9hKKDNSspnLHa0xAJ5cY%3D\";}s:23:\"gravityformsgetresponse\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:3:\"url\";s:185:\"http://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=uztrTO9mXe7rxjbPWNOQC%2Bq2wIQ%3D\";}s:21:\"gravityformshelpscout\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:3:\"url\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_1.4.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=g6y2ESx3T7mh%2Fe6w1QNUvRsqqeA%3D\";}s:20:\"gravityformshighrise\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:3:\"url\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=8Oz2EieLnFCZ3GhnthTaaspz65c%3D\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:3:\"url\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/hipchat/gravityformshipchat_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=gyx%2FEk%2BIAIMAACZz7dBKo1bmRs0%3D\";}s:20:\"gravityformsicontact\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:3:\"url\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=zAnbKydLOFsv62bKPG8IHPYFTDc%3D\";}s:19:\"gravityformslogging\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:3:\"url\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.0.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=5%2BKS0ight%2BqmrvZlPYmWa9Scvcs%3D\";}s:19:\"gravityformsmadmimi\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=u4FIx5y8FYnElKjnb8laHQMvH38%3D\";}s:21:\"gravityformsmailchimp\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.1\";s:3:\"url\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_4.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=68xQBOwvUg2GcROPeGzUp2bGRro%3D\";}s:26:\"gravityformspartialentries\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:3:\"url\";s:191:\"http://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.0.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=j1D1W3dknZ3KHxNH%2FPb52ePutc8%3D\";}s:18:\"gravityformspaypal\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_2.8.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=ja2XEw6Bvg5ReaSEjH3Z5G%2F9wCY%3D\";}s:33:\"gravityformspaypalexpresscheckout\";a:2:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";}s:29:\"gravityformspaypalpaymentspro\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:3:\"url\";s:199:\"http://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=dswfVCO%2BSEiKgfxV0rnGEY%2FcNMg%3D\";}s:21:\"gravityformspaypalpro\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:3:\"url\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.7.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=0NJiikq4zC4N2X57bqtuSAqzDtM%3D\";}s:20:\"gravityformspicatcha\";a:2:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";}s:17:\"gravityformspolls\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.1\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_3.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=0JjFWfJ%2BaXtE3i55Y7SyJBuTNUE%3D\";}s:16:\"gravityformsquiz\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.1\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_3.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=v1%2F9r8jNm%2F1cnPExjSjhu7NaX7A%3D\";}s:19:\"gravityformsrestapi\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:3:\"url\";s:182:\"http://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=q1FcLUwZ4xLWAPQ1CkFMau8Z8uY%3D\";}s:21:\"gravityformssignature\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.3\";s:3:\"url\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_3.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=pPtGaL7Kkd7EJqNNZCVl06sHSUc%3D\";}s:17:\"gravityformsslack\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:3:\"url\";s:171:\"http://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_1.6.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=f0Ev0KcrcXOffp2hbua2BUckuSI%3D\";}s:18:\"gravityformsstripe\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.2\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_2.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=nxmX4JhwZtEGXv2BSctGE0j4GV4%3D\";}s:18:\"gravityformssurvey\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.2\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_3.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=qU5BK%2BmZjL2F3E6W2mdPstCL63U%3D\";}s:18:\"gravityformstrello\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=xLdfpvM1K0MhRkUmqq9r1MT1PQA%3D\";}s:18:\"gravityformstwilio\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.2\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_2.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=QrkTlaCEIo7hb0ExyroeQKKEpnE%3D\";}s:28:\"gravityformsuserregistration\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.7\";s:3:\"url\";s:193:\"http://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_3.7.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=0G5rnBIUrL0453O7uYy5X9kgn5Y%3D\";}s:18:\"gravityformszapier\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:3:\"url\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_2.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=qz5FoQeeFNqpiF%2FQye1n%2BHLYqVk%3D\";}s:19:\"gravityformszohocrm\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_1.4.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1490474331&Signature=HrfpaziiBb3Y0hjBmjdZqEgjgbA%3D\";}}s:9:\"is_active\";s:1:\"1\";}','no'),(927,'_transient_timeout_genesis-update','1490387991','no'),(928,'_transient_genesis-update','a:4:{s:11:\"new_version\";s:5:\"2.4.2\";s:3:\"url\";s:40:\"http://my.studiopress.com/themes/genesis\";s:7:\"package\";s:60:\"http://www.genesistheme.com/download/?file=genesis.2.4.2.zip\";s:13:\"changelog_url\";s:53:\"http://www.genesistheme.com/changelog/?TB_iframe=true\";}','no'),(930,'_site_transient_timeout_browser_39ff8f4a6f74e01fab95852d21fd2db3','1490906392','yes'),(931,'_site_transient_browser_39ff8f4a6f74e01fab95852d21fd2db3','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"45.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(932,'maxbuttons_pro_update_checks','0','yes'),(934,'_site_transient_timeout_theme_roots','1490369724','yes'),(935,'_site_transient_theme_roots','a:2:{s:7:\"genesis\";s:7:\"/themes\";s:9:\"redbarnmn\";s:7:\"/themes\";}','yes'),(937,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1490411254','no'),(938,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1490411254','no'),(939,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1490368054','no'),(940,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1490411256','no'),(941,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1490411256','no'),(942,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1490368056','no'),(943,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1490411257','no'),(944,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"lin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Mar 2017 14:59:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 May 2008 22:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"5790@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2572@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"9542@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2007 17:40:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2646@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Clone posts and pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Lopo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"8321@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29860@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"1169@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 16.5 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Akismet checks your comments and contact form submissions against our global database of spam to protect you and your site from malicious content.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"51888@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"753@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"The original SEO plugin for WordPress, downloaded over 30,000,000 times since 2007.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"The best Google Analytics plugin for WordPress. See how visitors find and use your website, so you can keep them coming back.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"23862@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"The one plugin you need for stats, related posts, search engine optimization, social sharing, protection, backups, speed, and email list management.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"363@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security &#38; more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25254@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Aug 2008 14:38:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"6743@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Alex Mills (Viper007Bond)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2082@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38058@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12073@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"Search Engine (SEO) &#38; Performance Optimization (WPO) via caching. Integrated caching: CDN, Minify, Page, Object, Fragment, Database support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Displays Google Analytics stats in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26607@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26907@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly. Provides tool t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jul 2011 12:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"28395@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"plugin-master\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"31973@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/so-widgets-bundle/#post-67824\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 May 2014 14:27:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"67824@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"A collection of all widgets, neatly bundled into a single plugin. It&#039;s also a framework to code your own widgets on top of.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"21738@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"iThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/ninja-forms/#post-33147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2011 18:11:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"33147@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"Drag and drop fields in an intuitive UI to create create contact forms, email subscription forms, order forms, payment forms, send emails and more!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kevin Stover\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 24 Mar 2017 15:07:37 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Fri, 24 Mar 2017 15:34:22 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Fri, 24 Mar 2017 14:59:22 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20130911080210\";}','no'),(945,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1490411257','no'),(946,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1490368057','no'),(947,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1490411257','no'),(948,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/\'>WordPress 4.7.3 Security and Maintenance Release</a> <span class=\"rss-date\">March 6, 2017</span><div class=\"rssSummary\">WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect [&hellip;]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/php-5-6-is-now-the-most-widely-used-php-version\'>WPTavern: PHP 5.6 Is Now the Most Widely Used PHP Version</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2017/03/on-the-james-altucher-show/\'>Matt: On the James Altucher Show</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-268-behind-the-scenes-of-wordpress-development-course-up-and-running-second-edition\'>WPTavern: WPWeekly Episode 268 – Behind the Scenes of WordPress Development Course, Up and Running Second Edition</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/updraftplus/\' class=\'dashboard-news-plugin-link\'>Hello Dolly</a>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=updraftplus&amp;_wpnonce=dbbe1959ce&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Hello Dolly\'>Install</a>)</span></li></ul></div>','no'),(965,'_transient_timeout_GFCache_dbed9911e00266fca4e5daedc3be9dc6','1490368782','no'),(966,'_transient_GFCache_dbed9911e00266fca4e5daedc3be9dc6','1','no'),(975,'_transient_timeout_GFCache_daf0c076081d50410afcf1b67bb7dddb','1490368822','no'),(976,'_transient_GFCache_daf0c076081d50410afcf1b67bb7dddb','1','no'),(981,'_transient_timeout_GFCache_50c21a2b21aade3dd943fe28e100941e','1490368994','no'),(982,'_transient_GFCache_50c21a2b21aade3dd943fe28e100941e','1','no'),(991,'_transient_timeout_GFCache_29a180913339ef2fe4fea03a71960fc0','1490369005','no'),(992,'_transient_GFCache_29a180913339ef2fe4fea03a71960fc0','a:1:{i:0;O:8:\"stdClass\":2:{s:7:\"form_id\";s:1:\"2\";s:10:\"lead_count\";s:1:\"1\";}}','no'),(993,'_transient_timeout_GFCache_974bc4ef07ce00a1df18248d986bd001','1490369005','no'),(994,'_transient_GFCache_974bc4ef07ce00a1df18248d986bd001','a:2:{i:0;O:8:\"stdClass\":2:{s:7:\"form_id\";s:1:\"1\";s:10:\"view_count\";s:2:\"62\";}i:1;O:8:\"stdClass\":2:{s:7:\"form_id\";s:1:\"2\";s:10:\"view_count\";s:2:\"85\";}}','no');
/*!40000 ALTER TABLE `wprj_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_postmeta`
--

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

--
-- Dumping data for table `wprj_postmeta`
--

LOCK TABLES `wprj_postmeta` WRITE;
/*!40000 ALTER TABLE `wprj_postmeta` DISABLE KEYS */;
INSERT INTO `wprj_postmeta` VALUES (1,2,'_wp_page_template','default'),(6,2,'_edit_last','1'),(7,2,'_edit_lock','1490368852:1'),(8,7,'_edit_last','1'),(9,7,'_wp_page_template','default'),(10,7,'_edit_lock','1490368413:1'),(11,9,'_edit_last','1'),(12,9,'_wp_page_template','default'),(13,9,'_edit_lock','1490368160:1'),(14,11,'_edit_last','1'),(15,11,'_wp_page_template','default'),(16,11,'_edit_lock','1490368380:1'),(26,14,'_menu_item_type','post_type'),(27,14,'_menu_item_menu_item_parent','0'),(28,14,'_menu_item_object_id','11'),(29,14,'_menu_item_object','page'),(30,14,'_menu_item_target',''),(31,14,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(32,14,'_menu_item_xfn',''),(33,14,'_menu_item_url',''),(35,15,'_menu_item_type','post_type'),(36,15,'_menu_item_menu_item_parent','0'),(37,15,'_menu_item_object_id','7'),(38,15,'_menu_item_object','page'),(39,15,'_menu_item_target',''),(40,15,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(41,15,'_menu_item_xfn',''),(42,15,'_menu_item_url',''),(44,16,'_menu_item_type','post_type'),(45,16,'_menu_item_menu_item_parent','0'),(46,16,'_menu_item_object_id','9'),(47,16,'_menu_item_object','page'),(48,16,'_menu_item_target',''),(49,16,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50,16,'_menu_item_xfn',''),(51,16,'_menu_item_url',''),(53,17,'_menu_item_type','post_type'),(54,17,'_menu_item_menu_item_parent','0'),(55,17,'_menu_item_object_id','2'),(56,17,'_menu_item_object','page'),(57,17,'_menu_item_target',''),(58,17,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(59,17,'_menu_item_xfn',''),(60,17,'_menu_item_url',''),(62,18,'_edit_last','1'),(63,18,'_wp_page_template','default'),(64,18,'_edit_lock','1490027131:1'),(82,26,'_wp_attached_file','2016/03/red-barnwood.jpg'),(83,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1050;s:4:\"file\";s:24:\"2016/03/red-barnwood.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"red-barnwood-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"red-barnwood-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"red-barnwood-768x504.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"red-barnwood-1024x672.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-lg\";a:4:{s:4:\"file\";s:25:\"red-barnwood-1200x600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-sm\";a:4:{s:4:\"file\";s:24:\"red-barnwood-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-th\";a:4:{s:4:\"file\";s:24:\"red-barnwood-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D2X\";s:7:\"caption\";s:45:\"Abstract image of red painted wood background\";s:17:\"created_timestamp\";s:10:\"1161977747\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:45:\"Abstract image of red painted wood background\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(84,28,'_wp_attached_file','2016/03/midwest-home.jpg'),(85,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:450;s:4:\"file\";s:24:\"2016/03/midwest-home.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"midwest-home-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"midwest-home-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:24:\"midwest-home-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-sm\";a:4:{s:4:\"file\";s:24:\"midwest-home-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-th\";a:4:{s:4:\"file\";s:24:\"midwest-home-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1411310447\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(101,37,'_wp_attached_file','2016/03/minnesota-region-outline.png'),(102,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2016/03/minnesota-region-outline.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"minnesota-region-outline-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"minnesota-region-outline-300x218.png\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"featured-content-sm\";a:4:{s:4:\"file\";s:36:\"minnesota-region-outline-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(103,38,'_wp_attached_file','2016/03/home-inspection-checklist.jpg'),(104,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1050;s:4:\"file\";s:37:\"2016/03/home-inspection-checklist.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"home-inspection-checklist-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:37:\"home-inspection-checklist-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"home-inspection-checklist-768x504.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"home-inspection-checklist-1024x672.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-lg\";a:4:{s:4:\"file\";s:38:\"home-inspection-checklist-1200x600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-sm\";a:4:{s:4:\"file\";s:37:\"home-inspection-checklist-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-th\";a:4:{s:4:\"file\";s:37:\"home-inspection-checklist-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"40\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1170807946\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"90\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:3:\"1.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(107,64,'_wp_attached_file','2016/05/charlie-bemis.jpg'),(108,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:278;s:6:\"height\";i:259;s:4:\"file\";s:25:\"2016/05/charlie-bemis.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"charlie-bemis-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(109,65,'_wp_attached_file','2016/05/red-barnwood-background.jpg'),(110,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1050;s:4:\"file\";s:35:\"2016/05/red-barnwood-background.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"red-barnwood-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"red-barnwood-background-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"red-barnwood-background-768x504.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"red-barnwood-background-1024x672.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-lg\";a:4:{s:4:\"file\";s:36:\"red-barnwood-background-1200x600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-sm\";a:4:{s:4:\"file\";s:35:\"red-barnwood-background-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-th\";a:4:{s:4:\"file\";s:35:\"red-barnwood-background-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:24:\"Canon PowerShot SX150 IS\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1335366179\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(111,66,'_wp_attached_file','2016/05/midwest-home-background.jpg'),(112,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1050;s:4:\"file\";s:35:\"2016/05/midwest-home-background.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"midwest-home-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"midwest-home-background-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"midwest-home-background-768x504.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"midwest-home-background-1024x672.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-lg\";a:4:{s:4:\"file\";s:36:\"midwest-home-background-1200x600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-sm\";a:4:{s:4:\"file\";s:35:\"midwest-home-background-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-content-th\";a:4:{s:4:\"file\";s:35:\"midwest-home-background-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446392016\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(128,76,'_menu_item_type','custom'),(129,76,'_menu_item_menu_item_parent','0'),(130,76,'_menu_item_object_id','76'),(131,76,'_menu_item_object','custom'),(132,76,'_menu_item_target',''),(133,76,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(134,76,'_menu_item_xfn',''),(135,76,'_menu_item_url','/'),(137,77,'_tfba_show_photos_only',''),(138,77,'_tfba_date_posted',''),(139,77,'_tfba_profile_picture',''),(140,77,'_tfba_caption_text',''),(141,77,'_tfba_link_photos_to_instagram',''),(142,77,'_edit_lock','1490023067:1'),(143,77,'_edit_last','1'),(144,77,'_tfba_shortcode_value','[arrow_twitter_feed id=\'77\']'),(145,77,'_tfba_theme_selection','default'),(146,77,'_tfba_limit_post_characters','300'),(147,77,'_tfba_column_count','2'),(148,77,'_tfba_thumbnail_size','250'),(149,77,'_tfba_feed_style','blog_style'),(150,77,'_tfba_show_photos_from','userid'),(151,77,'_tfba_user_id','@RedBarnMN'),(152,77,'_tfba_number_of_photos','2'),(155,86,'_wp_attached_file','2017/03/redbarn-logo-edited.png'),(156,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:87;s:6:\"height\";i:60;s:4:\"file\";s:31:\"2017/03/redbarn-logo-edited.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(157,18,'_wp_trash_meta_status','publish'),(158,18,'_wp_trash_meta_time','1490027970'),(159,11,'_ss_sidebar','contact-page');
/*!40000 ALTER TABLE `wprj_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_posts`
--

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

--
-- Dumping data for table `wprj_posts`
--

LOCK TABLES `wprj_posts` WRITE;
/*!40000 ALTER TABLE `wprj_posts` DISABLE KEYS */;
INSERT INTO `wprj_posts` VALUES (1,1,'2016-03-24 14:32:01','2016-03-24 14:32:01','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2016-03-24 14:32:01','2016-03-24 14:32:01','',0,'http://redbarnmn.com/?p=1',0,'post','',1),(2,1,'2016-03-24 14:32:01','2016-03-24 14:32:01','<h2>What exactly is a general home inspection and what does it cover?</h2>\r\n<p style=\"text-align: left;\">Items inspected include:</p>\r\n\r\n<ul>\r\n	<li style=\"text-align: left;\">Foundation</li>\r\n	<li style=\"text-align: left;\">Structure</li>\r\n	<li style=\"text-align: left;\">Basement or crawl space</li>\r\n	<li style=\"text-align: left;\">Interior and exterior walls</li>\r\n	<li style=\"text-align: left;\">Siding</li>\r\n	<li style=\"text-align: left;\">Electrical system</li>\r\n	<li style=\"text-align: left;\">Water heater</li>\r\n	<li style=\"text-align: left;\">Heating and air conditioning systems</li>\r\n	<li style=\"text-align: left;\">Fireplace and exterior chimney</li>\r\n	<li style=\"text-align: left;\">Plumbing system and fixtures</li>\r\n	<li style=\"text-align: left;\">Porches and decks</li>\r\n	<li style=\"text-align: left;\">Attic</li>\r\n	<li style=\"text-align: left;\">Roof</li>\r\n	<li style=\"text-align: left;\">Gutters</li>\r\n	<li style=\"text-align: left;\">Slope and Grade on Property</li>\r\n</ul>\r\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\r\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\r\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\r\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\r\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\r\n<ul>\r\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\r\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\r\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\r\n</ul>\r\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\r\n\r\n<hr />\r\n\r\n<h2>How long does a home inspection take?</h2>\r\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected. Common sense tells us the bigger a property is, the longer it is going to take to inspect. And, older properties tend to have more issues, so they also take longer to inspect. Many times the listing for a property only states total finished square footage. This number does not include unfinished basements or unfinished utility rooms and storage areas. I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly. Normally clients show up only for the walk through portion of the inspection. At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc. If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection. On average I am at an inspection for 4 to 6 hours, the walk through portion with the client(s) is 1 to 2 hours.\r\n\r\n<hr />\r\n\r\n<h2>Pricing for services</h2>\r\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\r\n<ul>\r\n	<li>Total square footage of property/home</li>\r\n	<li>Age of property/home</li>\r\n	<li>Where the property/home is located</li>\r\n</ul>\r\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\r\n\r\nYou can contact me directly or use the form below to send me a service request online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.\r\n\r\n<hr />\r\n\r\n<h2>Contact for Inspection</h2>\r\n[gravityform id=\"1\" title=\"false\" description=\"true\"]','Inspections','','publish','closed','closed','','inspections','','','2017-03-24 10:22:53','2017-03-24 15:22:53','',0,'http://redbarnmn.com/?page_id=2',0,'page','',0),(6,1,'2016-03-24 15:36:17','2016-03-24 15:36:17','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://redbarnmn.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Property Inspections','','inherit','closed','closed','','2-revision-v1','','','2016-03-24 15:36:17','2016-03-24 15:36:17','',2,'http://redbarnmn.com/2016/03/24/2-revision-v1/',0,'revision','',0),(7,1,'2016-03-24 15:37:01','2016-03-24 15:37:01','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n\r\n<hr />\r\n\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n\r\n<hr />\r\n\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n\r\n<hr />\r\n\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n\r\n<hr />\r\n\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n\r\n<hr />\r\n\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n\r\n<hr />\r\n\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\r\n\r\n<hr />\r\n\r\n<h2>Aerial Inspection/Photography</h2>\r\nThe aerial inspection is for situations that require the inspection or photography of something that is too high off the ground to be safely inspected or photographed up close.  We use a drone equipped with a high resolution camera for this service.  This allows us to get good looks at roofs, grain bins, property lots, etc.\r\n\r\n<hr />\r\n\r\n<h2>Home Maintenance Consultation</h2>\r\nA home maintenance consultation is for home owners who want to know what type of maintenance they need to perform on their home to keep it in the best possible condition.  We will walk through the property and access what maintenance has been done and what maintenance needs to be done.  Valves, filters, and shutoffs will all be labeled and clients will receive maintenance schedules and maintenance booklets for future reference.  This consultation will help reduce energy costs and improve your homes energy efficiency.\r\n\r\n<hr />\r\n\r\n<h2>Additional Services</h2>\r\nAdditional Services are typically options we provide to our clients they may need or want to add on to an inspection or consultation, but they can also be performed independently from any other inspection or consultation.  These include:\r\n<ul>\r\n	<li>Water Testing</li>\r\n	<li>Sewer Line Inspection</li>\r\n	<li>Outbuilding Inspection</li>\r\n	<li>Lead Testing</li>\r\n	<li>Mold Testing</li>\r\n	<li>Radon Testing</li>\r\n</ul>','Services','','publish','closed','closed','','services','','','2017-03-24 10:15:35','2017-03-24 15:15:35','',0,'http://redbarnmn.com/?page_id=7',0,'page','',0),(8,1,'2016-03-24 15:37:01','2016-03-24 15:37:01','','Energy Inspections','','inherit','closed','closed','','7-revision-v1','','','2016-03-24 15:37:01','2016-03-24 15:37:01','',7,'http://redbarnmn.com/2016/03/24/7-revision-v1/',0,'revision','',0),(9,1,'2016-03-24 15:37:22','2016-03-24 15:37:22','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address, please <a href=\"http://redbarnmn.com/contact/\">contact me</a> and I will be happy to answer them (or at least try).\r\n<h2>Why should I get a home inspection?</h2>\r\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\r\n\r\n<hr />\r\n\r\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\r\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\r\n\r\n<hr />\r\n\r\n<h2>Why do we use an electronic report rather than a paper report?</h2>\r\nDuring our inspections we take hundreds of pictures. These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them. Most people don’t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about. Because these pictures are so important to the report it is necessary to use inspection reporting software. When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes. When the report is finished it is sent to the email address provided by the client at the inspection. The report can also be sent to the client’s realtor if they so wish. By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment. You can review the report on your computer or print it out if you want a paper copy for your records. If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you. The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision. Reports are typically completed within 48 hours of the home inspection. We feel doing things this way gives our clients a better overall product.\r\n\r\n<hr />\r\n\r\n<h2>Who do we recommend for real estate agents and Mortgage Professionals?</h2>\r\nI take referrals very seriously, I won’t refer just anyone.  People must be trustworthy and knowledgeable for me to refer them, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they’ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h3>Real Estate Agents</h3>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\">\r\n<h3>Mortgage Professionals (Loan Officers)</h3>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n\r\n</div>','FAQs','','publish','closed','closed','','faq','','','2017-03-24 10:08:09','2017-03-24 15:08:09','',0,'http://redbarnmn.com/?page_id=9',0,'page','',0),(10,1,'2016-03-24 15:37:22','2016-03-24 15:37:22','','Estimates','','inherit','closed','closed','','9-revision-v1','','','2016-03-24 15:37:22','2016-03-24 15:37:22','',9,'http://redbarnmn.com/2016/03/24/9-revision-v1/',0,'revision','',0),(11,1,'2016-03-24 15:37:35','2016-03-24 20:37:35','The best way to contact me is to call or text the number below.  If I don’t answer leave me a message and I’ll return your call within 4 hours.  You can also contact me by using the form below.\r\n\r\nRed Barn Property Inspection LLC\r\nPhone:  320-420-2497\r\n\r\nI cover the entire state of Minnesota.  The majority of my work is in Central Minnesota and the Twin Cities Metro area, but don’t be afraid to contact me for a quote on any of my services, no matter where you are located.\r\n<h2>Use the Form Below to Get In Touch</h2>\r\n[gravityform id=\"1\" title=\"true\" description=\"false\"]','Contact','','publish','closed','closed','','contact','','','2017-03-24 10:13:11','2017-03-24 15:13:11','',0,'http://redbarnmn.com/?page_id=11',0,'page','',0),(12,1,'2016-03-24 15:37:35','2016-03-24 15:37:35','','Contact Us','','inherit','closed','closed','','11-revision-v1','','','2016-03-24 15:37:35','2016-03-24 15:37:35','',11,'http://redbarnmn.com/2016/03/24/11-revision-v1/',0,'revision','',0),(14,1,'2016-03-24 15:39:15','2016-03-24 15:39:15',' ','','','publish','closed','closed','','14','','','2017-03-20 10:03:36','2017-03-20 15:03:36','',0,'http://redbarnmn.com/?p=14',5,'nav_menu_item','',0),(15,1,'2016-03-24 15:39:14','2016-03-24 15:39:14',' ','','','publish','closed','closed','','15','','','2017-03-20 10:03:36','2017-03-20 15:03:36','',0,'http://redbarnmn.com/?p=15',2,'nav_menu_item','',0),(16,1,'2016-03-24 15:39:15','2016-03-24 15:39:15',' ','','','publish','closed','closed','','16','','','2017-03-20 10:03:36','2017-03-20 15:03:36','',0,'http://redbarnmn.com/?p=16',4,'nav_menu_item','',0),(17,1,'2016-03-24 15:39:13','2016-03-24 15:39:13',' ','','','publish','closed','closed','','17','','','2017-03-20 10:03:36','2017-03-20 15:03:36','',0,'http://redbarnmn.com/?p=17',3,'nav_menu_item','',0),(18,1,'2016-03-24 15:40:13','2016-03-24 15:40:13','I take referrals very seriously, I won\'t refer just anyone.  The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\"> \r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n</div>','Referrals','','trash','closed','closed','','referrals','','','2017-03-20 11:39:30','2017-03-20 16:39:30','',0,'http://redbarnmn.com/?page_id=18',0,'page','',0),(19,1,'2016-03-24 15:40:13','2016-03-24 15:40:13','','Realtors','','inherit','closed','closed','','18-revision-v1','','','2016-03-24 15:40:13','2016-03-24 15:40:13','',18,'http://redbarnmn.com/2016/03/24/18-revision-v1/',0,'revision','',0),(23,1,'2016-03-24 15:57:00','2016-03-24 15:57:00','','Services','','inherit','closed','closed','','7-revision-v1','','','2016-03-24 15:57:00','2016-03-24 15:57:00','',7,'http://redbarnmn.com/2016/03/24/7-revision-v1/',0,'revision','',0),(26,1,'2016-03-24 16:41:02','2016-03-24 16:41:02','','Red Barnwood','','inherit','open','closed','','abstract-image-of-red-painted-wood-background','','','2016-03-24 16:41:14','2016-03-24 16:41:14','',0,'http://redbarnmn.com/wp-content/uploads/2016/03/red-barnwood.jpg',0,'attachment','image/jpeg',0),(27,1,'2016-03-24 16:42:16','2016-03-24 16:42:16','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://redbarnmn.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Inspections','','inherit','closed','closed','','2-revision-v1','','','2016-03-24 16:42:16','2016-03-24 16:42:16','',2,'http://redbarnmn.com/2016/03/24/2-revision-v1/',0,'revision','',0),(28,1,'2016-03-24 16:52:08','2016-03-24 16:52:08','','Midwest Home','','inherit','open','closed','','midwest-home','','','2016-03-24 16:52:22','2016-03-24 16:52:22','',0,'http://redbarnmn.com/wp-content/uploads/2016/03/midwest-home.jpg',0,'attachment','image/jpeg',0),(30,1,'2016-03-24 12:42:02','2016-03-24 17:42:02','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:\r\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ña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\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>\r\nAs a new WordPress user, you should go to <a href=\"http://redbarnmn.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Estimates','','inherit','closed','closed','','9-revision-v1','','','2016-03-24 12:42:02','2016-03-24 17:42:02','',9,'http://redbarnmn.com/2016/03/24/9-revision-v1/',0,'revision','',0),(31,1,'2016-03-24 12:42:14','2016-03-24 17:42:14','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:\r\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ña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\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>\r\nAs a new WordPress user, you should go to <a href=\"http://redbarnmn.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Realtors','','inherit','closed','closed','','18-revision-v1','','','2016-03-24 12:42:14','2016-03-24 17:42:14','',18,'http://redbarnmn.com/2016/03/24/18-revision-v1/',0,'revision','',0),(32,1,'2016-03-24 12:42:24','2016-03-24 17:42:24','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:\r\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ña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\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>\r\nAs a new WordPress user, you should go to <a href=\"http://redbarnmn.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Services','','inherit','closed','closed','','7-revision-v1','','','2016-03-24 12:42:24','2016-03-24 17:42:24','',7,'http://redbarnmn.com/2016/03/24/7-revision-v1/',0,'revision','',0),(33,1,'2016-03-24 12:42:38','2016-03-24 17:42:38','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:\r\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ña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\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>\r\nAs a new WordPress user, you should go to <a href=\"http://redbarnmn.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Contact Us','','inherit','closed','closed','','11-revision-v1','','','2016-03-24 12:42:38','2016-03-24 17:42:38','',11,'http://redbarnmn.com/2016/03/24/11-revision-v1/',0,'revision','',0),(37,1,'2016-03-24 13:23:12','2016-03-24 18:23:12','','minnesota-region-outline','','inherit','open','closed','','minnesota-region-outline','','','2016-03-24 13:23:12','2016-03-24 18:23:12','',0,'http://redbarnmn.com/wp-content/uploads/2016/03/minnesota-region-outline.png',0,'attachment','image/png',0),(38,1,'2016-03-24 13:34:17','2016-03-24 18:34:17','','home-inspection-checklist','','inherit','open','closed','','home-inspection-checklist','','','2016-03-24 13:34:17','2016-03-24 18:34:17','',0,'http://redbarnmn.com/wp-content/uploads/2016/03/home-inspection-checklist.jpg',0,'attachment','image/jpeg',0),(40,1,'2017-03-20 11:05:40','2017-03-20 16:05:40','<h2>Home Buyer Inspection</h2>\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\n\n<hr />\n\n<h2>Home Seller Inspection</h2>\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\n\n<hr />\n\n&nbsp;\n<h2>Home Seller Consultation</h2>\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\n\n<hr />\n\n&nbsp;\n<h2>Energy Consultation</h2>\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\n\n<hr />\n\n&nbsp;\n<h2>Thermal Imaging</h2>\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\n\n<hr />\n\n&nbsp;\n<h2>Water Saving Packages</h2>\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\n\n<hr />\n\n&nbsp;\n<h2>Energy Saving Packages</h2>\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\n\n<hr />\n\n&nbsp;\n<h2>Aerial Inspection/Photography</h2>\nThe aerial inspection is for situations that require the inspection or photography of something that is too high off the ground to be safely inspected or photographed up close.  We use a drone equipped with a high resolution camera for this service.  This allows us to get good looks at roofs, grain bins, property lots, etc.\n<h2>Home Maintenance Consultation</h2>\nA home maintenance consultation is for home owners who want to know what type of maintenance they need to perform on their home to keep it in the best possible condition.  We will walk through the property and access what maintenance has been done and what maintenance needs to be done.  Valves, filters, and shutoffs will all be labeled and clients will receive maintenance schedules and maintenance booklets for future reference.  This consultation will help reduce energy costs and improve your homes energy efficiency.\n<h2>Additional Services</h2>\nAdditional Services are typically options we provide to our clients they may need or want to add on to an inspection or consultation, but they can also be performed independently from any other inspection or consultation.  These include:\n<ul>\n	<li>Water Testing</li>\n	<li>Sewer Line Inspection</li>\n	<li>Outbuilding Inspection</li>\n	<li>Lead Testing</li>\n	<li>Mold Testing</li>\n	<li>Radon Testing</li>\n</ul>','Services','','inherit','closed','closed','','7-autosave-v1','','','2017-03-20 11:05:40','2017-03-20 16:05:40','',7,'http://redbarnmn.com/2016/04/21/7-autosave-v1/',0,'revision','',0),(41,1,'2016-04-21 09:45:27','2016-04-21 14:45:27','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n<h2>Additional Services</h2>\r\nAdditional Services are options we provide to our clients they may need or want to add on to an inspection.  These include:  Water Testing, Sewer Line Inspection, Outbuilding Inspection, Lead Testing, Mold Testing,  and Radon Testing.\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.','Services','','inherit','closed','closed','','7-revision-v1','','','2016-04-21 09:45:27','2016-04-21 14:45:27','',7,'http://redbarnmn.com/2016/04/21/7-revision-v1/',0,'revision','',0),(42,1,'2016-04-21 10:27:18','2016-04-21 15:27:18','<div class=\"one-half first\">\r\n<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n<h2>Additional Services</h2>\r\nAdditional Services are options we provide to our clients they may need or want to add on to an inspection.  These include:  Water Testing, Sewer Line Inspection, Outbuilding Inspection, Lead Testing, Mold Testing,  and Radon Testing.\r\n</div>\r\n<div class=\"one-half\">\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.</div>','Services','','inherit','closed','closed','','7-revision-v1','','','2016-04-21 10:27:18','2016-04-21 15:27:18','',7,'http://redbarnmn.com/2016/04/21/7-revision-v1/',0,'revision','',0),(43,1,'2016-04-21 10:27:55','2016-04-21 15:27:55','<div class=\"one-half first\">\r\n<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n<h2>Additional Services</h2>\r\nAdditional Services are options we provide to our clients they may need or want to add on to an inspection.  These include:  Water Testing, Sewer Line Inspection, Outbuilding Inspection, Lead Testing, Mold Testing,  and Radon Testing.\r\n\r\n</div>\r\n<div class=\"one-half\">\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\r\n\r\n</div>','Services','','inherit','closed','closed','','7-revision-v1','','','2016-04-21 10:27:55','2016-04-21 15:27:55','',7,'http://redbarnmn.com/2016/04/21/7-revision-v1/',0,'revision','',0),(45,1,'2017-03-24 10:22:21','2017-03-24 15:22:21','<h2>What exactly is a general home inspection and what does it cover?</h2>\n<p style=\"text-align: left;\">Items inspected include:</p>\n\n<ul>\n	<li style=\"text-align: left;\">Foundation</li>\n	<li style=\"text-align: left;\">Structure</li>\n	<li style=\"text-align: left;\">Basement or crawl space</li>\n	<li style=\"text-align: left;\">Interior and exterior walls</li>\n	<li style=\"text-align: left;\">Siding</li>\n	<li style=\"text-align: left;\">Electrical system</li>\n	<li style=\"text-align: left;\">Water heater</li>\n	<li style=\"text-align: left;\">Heating and air conditioning systems</li>\n	<li style=\"text-align: left;\">Fireplace and exterior chimney</li>\n	<li style=\"text-align: left;\">Plumbing system and fixtures</li>\n	<li style=\"text-align: left;\">Porches and decks</li>\n	<li style=\"text-align: left;\">Attic</li>\n	<li style=\"text-align: left;\">Roof</li>\n	<li style=\"text-align: left;\">Gutters</li>\n	<li style=\"text-align: left;\">Slope and Grade on Property</li>\n</ul>\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\n<ul>\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\n</ul>\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\n\n<hr />\n\n<h2>How long does a home inspection take?</h2>\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected. Common sense tells us the bigger a property is, the longer it is going to take to inspect. And, older properties tend to have more issues, so they also take longer to inspect. Many times the listing for a property only states total finished square footage. This number does not include unfinished basements or unfinished utility rooms and storage areas. I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly. Normally clients show up only for the walk through portion of the inspection. At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc. If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection. On average I am at an inspection for 4 to 6 hours, the walk through portion with the client(s) is 1 to 2 hours.\n\n<hr />\n\n<h2>Pricing for services</h2>\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\n<ul>\n	<li>Total square footage of property/home</li>\n	<li>Age of property/home</li>\n	<li>Where the property/home is located</li>\n</ul>\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\n\nYou can contact me directly or use the form below to send me a service request online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.\n\n<hr />\n\n<h2>Contact for Inspection</h2>\n[gravityform id=\"1\" title=\"false\" description=\"true\"]','Inspections','','inherit','closed','closed','','2-autosave-v1','','','2017-03-24 10:22:21','2017-03-24 15:22:21','',2,'http://redbarnmn.com/2016/05/10/2-autosave-v1/',0,'revision','',0),(46,1,'2016-05-10 09:03:43','2016-05-10 14:03:43','<h2>Pricing for services</h2>\r\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\r\n<ul>\r\n	<li>Total square footage of property/home</li>\r\n	<li>Age of property/home</li>\r\n	<li>Where the property/home is located</li>\r\n</ul>\r\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And, I cover the entire state of Minnesota, but the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\r\n\r\nYou can contact me directly or <a href=\"http://redbarnmn.com/contact-us/\">click here</a> to send me a message online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.','Inspections','','inherit','closed','closed','','2-revision-v1','','','2016-05-10 09:03:43','2016-05-10 14:03:43','',2,'http://redbarnmn.com/2016/05/10/2-revision-v1/',0,'revision','',0),(48,1,'2016-05-10 09:16:25','2016-05-10 14:16:25','<h2>Pricing for services</h2>\r\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\r\n<ul>\r\n	<li>Total square footage of property/home</li>\r\n	<li>Age of property/home</li>\r\n	<li>Where the property/home is located</li>\r\n</ul>\r\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And, I cover the entire state of Minnesota, but the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\r\n\r\nYou can contact me directly or use the form below to send me a service request online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.\r\n\r\n[gravityform id=\"1\" title=\"true\" description=\"true\"]','Inspections','','inherit','closed','closed','','2-revision-v1','','','2016-05-10 09:16:25','2016-05-10 14:16:25','',2,'http://redbarnmn.com/2016/05/10/2-revision-v1/',0,'revision','',0),(49,1,'2017-03-20 11:29:36','2017-03-20 16:29:36','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address, please <a href=\"http://redbarnmn.com/contact-us/\">contact me</a> and I will be happy to answer them (or at least try).\n\n&nbsp;\n<h2>Why should I get a home inspection?</h2>\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\n<h2>Why do we use an electronic report rather than a paper report?</h2>\nDuring our inspections we take hundreds of pictures. These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them. Most people don’t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about. Because these pictures are so important to the report it is necessary to use inspection reporting software. When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes. When the report is finished it is sent to the email address provided by the client at the inspection. The report can also be sent to the client’s realtor if they so wish. By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment. You can review the report on your computer or print it out if you want a paper copy for your records. If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you. The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision. Reports are typically completed within 48 hours of the home inspection. We feel doing things this way gives our clients a better overall product.\n<h1>Referrals</h1>\nI take referrals very seriously, I won\'t refer just anyone. The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities. These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\n<div class=\"one-half first\">\n<h2>Real Estate Agents</h2>\nSandy Miller\n612-618-8538\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\nServing Central MN\nLocated in Princeton, MN\n\nRoss Burau\n320-224-2993\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\nServing Central MN and the Twin Cities Metro Area\nLocated in Becker, MN\n\nTommy Anderson\n952-292-1039\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\nServing the Twin Cities Metro Area and Southern MN\nLocated in Prior Lake, MN\n\nMatt Imdieke\n320-420-1295\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\nServing Central MN\nLocated in St. Cloud, MN\n\nJacob Imdieke\n320-491-7157\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\nServing Central MN\nLocated in St. Cloud, MN\n\nRob Droogsma\n320-224-7081\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\nServing Central MN\nLocated in Milaca, MN\n\n</div>\n<div class=\"one-half\">\n<h2>Mortgage Professionals (Loan Officers)</h2>\nDarin (Curby) Keimig\n612-363-8221\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\nServing all of MN\nLocated in Prior Lake, MN\n\n</div>','FAQs','','inherit','closed','closed','','9-autosave-v1','','','2017-03-20 11:29:36','2017-03-20 16:29:36','',9,'http://redbarnmn.com/2016/05/10/9-autosave-v1/',0,'revision','',0),(50,1,'2016-05-10 09:33:53','2016-05-10 14:33:53','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address send them to me, I am happy to answer them (or at least try).\r\n<h2>What exactly is a general home inspection and what does it cover?</h2>\r\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\r\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\r\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\r\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\r\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\r\n<ul>\r\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\r\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\r\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\r\n</ul>\r\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\r\n<h2>Why should I get a home inspection?</h2>\r\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\r\n<h2>How long does a home inspection take?</h2>\r\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected.  Common sense tells us the bigger a property is, the longer it is going to take to inspect.  And, older properties tend to have more issues, so they also take longer to inspect.  Many times the listing for a property only states total finished square footage.  This number does not include unfinished basements or unfinished utility rooms and storage areas.  I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly.  Normally clients show up only for the walk through portion of the inspection.  At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc.  If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection.  On average I tend to spend more time at a property and with my clients compared to other inspectors.  The list below gives approximate lengths of time for inspections.\r\n<ul>\r\n	<li>Under 1500 total square feet - 1.5 to 2.5 hours for inspection, 1 to 1.5 hours for walk through, 2.5 to 4 hours total</li>\r\n	<li>1500 - 2000 total square feet - 2 to 3 hours for inspection, 1 to 2 hours for walk through, 3.5 to 5 hours total</li>\r\n	<li>2000 - 2500 total square feet - 2.5 to 4 hours for inspection, 1 to 2 hours for walk through, 4 to 5.5 hours total</li>\r\n	<li>2500 - 3000 total square feet - 3 to 4.5 hours for inspection, 1 to 2 hours for walk through, 4.5 to 6 hours total</li>\r\n	<li>3000 - 3500 total square feet - 3.5 to 5 hours for inspection, 1 to 2 hours for walk through, 5 to 6.5 hours total</li>\r\n	<li>3500 - 4000 total square feet - 4 to 5.5 hours for inspection, 1 to 2 hours for walk through, 5.5 to 7 hours total</li>\r\n	<li>4000 - 4500 total square feet - 4.5 to 6 hours for inspection, 1 to 2 hours for walk through, 6 to 7.5 hours total</li>\r\n	<li>over 4500 square feet - contact me for details</li>\r\n</ul>\r\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\r\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\r\n<h2>Why do we use an electronic report rather than a paper report?</h2>\r\nDuring our inspections we take hundreds of pictures.  These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them.  Most people don\'t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about.  Because these pictures are so important to the report it is necessary to use inspection reporting software.  When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes.  When the report is finished it is sent to the email address provided by the client at the inspection.  The report can also be sent to the client’s realtor if they so wish.  By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment.  You can review the report on your computer or print it out if you want a paper copy for your records.  If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you.  The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision.   Reports are typically completed within 48 hours of the home inspection.  We feel doing things this way gives our clients a better overall product.','FAQs','','inherit','closed','closed','','9-revision-v1','','','2016-05-10 09:33:53','2016-05-10 14:33:53','',9,'http://redbarnmn.com/2016/05/10/9-revision-v1/',0,'revision','',0),(51,1,'2016-05-10 09:36:12','2016-05-10 14:36:12','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address, please <a href=\"http://redbarnmn.com/contact-us/\">contact me</a> and I will be happy to answer them (or at least try).\r\n<h2>What exactly is a general home inspection and what does it cover?</h2>\r\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\r\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\r\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\r\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\r\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\r\n<ul>\r\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\r\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\r\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\r\n</ul>\r\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\r\n<h2>Why should I get a home inspection?</h2>\r\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\r\n<h2>How long does a home inspection take?</h2>\r\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected.  Common sense tells us the bigger a property is, the longer it is going to take to inspect.  And, older properties tend to have more issues, so they also take longer to inspect.  Many times the listing for a property only states total finished square footage.  This number does not include unfinished basements or unfinished utility rooms and storage areas.  I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly.  Normally clients show up only for the walk through portion of the inspection.  At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc.  If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection.  On average I tend to spend more time at a property and with my clients compared to other inspectors.  The list below gives approximate lengths of time for inspections.\r\n<ul>\r\n	<li>Under 1500 total square feet - 1.5 to 2.5 hours for inspection, 1 to 1.5 hours for walk through, 2.5 to 4 hours total</li>\r\n	<li>1500 - 2000 total square feet - 2 to 3 hours for inspection, 1 to 2 hours for walk through, 3.5 to 5 hours total</li>\r\n	<li>2000 - 2500 total square feet - 2.5 to 4 hours for inspection, 1 to 2 hours for walk through, 4 to 5.5 hours total</li>\r\n	<li>2500 - 3000 total square feet - 3 to 4.5 hours for inspection, 1 to 2 hours for walk through, 4.5 to 6 hours total</li>\r\n	<li>3000 - 3500 total square feet - 3.5 to 5 hours for inspection, 1 to 2 hours for walk through, 5 to 6.5 hours total</li>\r\n	<li>3500 - 4000 total square feet - 4 to 5.5 hours for inspection, 1 to 2 hours for walk through, 5.5 to 7 hours total</li>\r\n	<li>4000 - 4500 total square feet - 4.5 to 6 hours for inspection, 1 to 2 hours for walk through, 6 to 7.5 hours total</li>\r\n	<li>over 4500 square feet - contact me for details</li>\r\n</ul>\r\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\r\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\r\n<h2>Why do we use an electronic report rather than a paper report?</h2>\r\nDuring our inspections we take hundreds of pictures.  These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them.  Most people don\'t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about.  Because these pictures are so important to the report it is necessary to use inspection reporting software.  When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes.  When the report is finished it is sent to the email address provided by the client at the inspection.  The report can also be sent to the client’s realtor if they so wish.  By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment.  You can review the report on your computer or print it out if you want a paper copy for your records.  If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you.  The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision.   Reports are typically completed within 48 hours of the home inspection.  We feel doing things this way gives our clients a better overall product.','FAQs','','inherit','closed','closed','','9-revision-v1','','','2016-05-10 09:36:12','2016-05-10 14:36:12','',9,'http://redbarnmn.com/2016/05/10/9-revision-v1/',0,'revision','',0),(52,1,'2016-05-10 09:37:39','2016-05-10 14:37:39','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:\r\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ña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\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>\r\nAs a new WordPress user, you should go to <a href=\"http://redbarnmn.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Contact','','inherit','closed','closed','','11-revision-v1','','','2016-05-10 09:37:39','2016-05-10 14:37:39','',11,'http://redbarnmn.com/2016/05/10/11-revision-v1/',0,'revision','',0),(53,1,'2016-05-10 09:44:01','2016-05-10 14:44:01','I take referrals very seriously, I won\'t refer just anyone.  The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\n<div class=\"one-half first\">\n<h2>Real Estate Agents</h2>\nSandy Miller\n612-618-8538\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\nServing Central MN\nLocated in Princeton, MN\n\nRoss Burau\n320-224-2993\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\nServing Central MN and the Twin Cities Metro Area\nLocated in Becker, MN\n\nTommy Anderson\n952-292-1039\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\nServing the Twin Cities Metro Area and Southern MN\nLocated in Prior Lake, MN\n</div>\n<div class-\"one-half\">\nMatt Imdieke\n320-420-1295\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\nServing Central MN\nLocated in St. Cloud, MN\n\nJacob Imdieke\n320-491-7157\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\nServing Central MN\nLocated in St. Cloud, MN\n\nRob Droogsma\n320-224-7081\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\nServing Central MN\nLocated in Milaca, MN\n\n</div>\n\n<h2>Mortgage Professionals (Loan Officers)</h2>\nDarin (Curby) Keimig\n612-363-8221\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\nServing all of MN\nLocated in Prior Lake, MN\n\n</div>','Referrals','','inherit','closed','closed','','18-autosave-v1','','','2016-05-10 09:44:01','2016-05-10 14:44:01','',18,'http://redbarnmn.com/2016/05/10/18-autosave-v1/',0,'revision','',0),(54,1,'2016-05-10 09:40:07','2016-05-10 14:40:07','I take referrals very seriously, I won\'t refer just anyone.  The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\nsm_miller@ymail.com\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\nrburau44@gmail.com\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\ntommy.anderson@remax.net\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\nMatt@CentralMNRealty.com\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\nJacob@CentralMNRealty.com\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\nrobdroogsma@yahoo.com\r\nServing Central MN\r\nLocated in Milaca, MN\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\ndarin.keimig@loanpacific.com\r\ndarin@darinkeimig.com\r\nServing all of MN\r\nLocated in Prior Lake, MN','Referrals','','inherit','closed','closed','','18-revision-v1','','','2016-05-10 09:40:07','2016-05-10 14:40:07','',18,'http://redbarnmn.com/2016/05/10/18-revision-v1/',0,'revision','',0),(55,1,'2016-05-10 09:41:23','2016-05-10 14:41:23','<div class=\"one-half first\">\r\nI take referrals very seriously, I won\'t refer just anyone.  The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\nsm_miller@ymail.com\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\nrburau44@gmail.com\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\ntommy.anderson@remax.net\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\nMatt@CentralMNRealty.com\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\nJacob@CentralMNRealty.com\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\nrobdroogsma@yahoo.com\r\nServing Central MN\r\nLocated in Milaca, MN\r\n</div>\r\n<div class=\"one-half\">\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\ndarin.keimig@loanpacific.com\r\ndarin@darinkeimig.com\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n</div>','Referrals','','inherit','closed','closed','','18-revision-v1','','','2016-05-10 09:41:23','2016-05-10 14:41:23','',18,'http://redbarnmn.com/2016/05/10/18-revision-v1/',0,'revision','',0),(56,1,'2016-05-10 09:41:40','2016-05-10 14:41:40','I take referrals very seriously, I won\'t refer just anyone.  The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\nsm_miller@ymail.com\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\nrburau44@gmail.com\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\ntommy.anderson@remax.net\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\nMatt@CentralMNRealty.com\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\nJacob@CentralMNRealty.com\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\nrobdroogsma@yahoo.com\r\nServing Central MN\r\nLocated in Milaca, MN\r\n</div>\r\n<div class=\"one-half\">\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\ndarin.keimig@loanpacific.com\r\ndarin@darinkeimig.com\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n</div>','Referrals','','inherit','closed','closed','','18-revision-v1','','','2016-05-10 09:41:40','2016-05-10 14:41:40','',18,'http://redbarnmn.com/2016/05/10/18-revision-v1/',0,'revision','',0),(57,1,'2016-05-10 09:42:58','2016-05-10 14:42:58','I take referrals very seriously, I won\'t refer just anyone.  The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\">\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n\r\n</div>','Referrals','','inherit','closed','closed','','18-revision-v1','','','2016-05-10 09:42:58','2016-05-10 14:42:58','',18,'http://redbarnmn.com/2016/05/10/18-revision-v1/',0,'revision','',0),(58,1,'2016-05-10 09:44:04','2016-05-10 14:44:04','I take referrals very seriously, I won\'t refer just anyone.  The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n</div>\r\n<div class-\"one-half\">\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n\r\n</div>','Referrals','','inherit','closed','closed','','18-revision-v1','','','2016-05-10 09:44:04','2016-05-10 14:44:04','',18,'http://redbarnmn.com/2016/05/10/18-revision-v1/',0,'revision','',0),(59,1,'2016-05-10 09:44:17','2016-05-10 14:44:17','I take referrals very seriously, I won\'t refer just anyone.  The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n</div>\r\n<div class-\"one-half\">\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN','Referrals','','inherit','closed','closed','','18-revision-v1','','','2016-05-10 09:44:17','2016-05-10 14:44:17','',18,'http://redbarnmn.com/2016/05/10/18-revision-v1/',0,'revision','',0),(60,1,'2016-05-10 09:45:11','2016-05-10 14:45:11','I take referrals very seriously, I won\'t refer just anyone.  The two most important qualities people must have for me to refer them is they must be trustworthy and they must be extremely knowledgeable, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they\'ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\"> \r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n</div>','Referrals','','inherit','closed','closed','','18-revision-v1','','','2016-05-10 09:45:11','2016-05-10 14:45:11','',18,'http://redbarnmn.com/2016/05/10/18-revision-v1/',0,'revision','',0),(61,1,'2016-05-10 10:10:50','2016-05-10 15:10:50','The best way to contact me is to call the number below.  If I don’t answer leave me a message and I’ll return your call within 4 hours.  You can also contact me by using the form below.\n\nRed Barn Property Inspection LLC\n15724 90th St.\nOak Park, MN  56357\n\nPhone:  320-420-2497\nFax:  320-294-5579\n\nI cover the entire state of Minnesota.  The majority of my work is in Central Minnesota and the Twin Cities Metro area, but don’t be afraid to contact me for a quote on any of my services, no matter where you are located.\n\n[gravityform id=\"2\" title=\"true\" description=\"true\"]','Contact','','inherit','closed','closed','','11-autosave-v1','','','2016-05-10 10:10:50','2016-05-10 15:10:50','',11,'http://redbarnmn.com/2016/05/10/11-autosave-v1/',0,'revision','',0),(62,1,'2016-05-10 10:09:47','2016-05-10 15:09:47','The best way to contact me is to call the number below.  If I don’t answer leave me a message and I’ll return your call within 4 hours.  You can also contact me by using the form below.\r\n\r\nI cover the entire state of Minnesota.  The majority of my work is in Central Minnesota and the Twin Cities Metro area, but don’t be afraid to contact me for a quote on any of my services, no matter where you are located.\r\n\r\n[gravityform id=\"2\" title=\"true\" description=\"true\"]','Contact','','inherit','closed','closed','','11-revision-v1','','','2016-05-10 10:09:47','2016-05-10 15:09:47','',11,'http://redbarnmn.com/2016/05/10/11-revision-v1/',0,'revision','',0),(63,1,'2016-05-10 10:11:11','2016-05-10 15:11:11','The best way to contact me is to call the number below.  If I don’t answer leave me a message and I’ll return your call within 4 hours.  You can also contact me by using the form below.\r\n\r\nRed Barn Property Inspection LLC\r\n15724 90th St.\r\nOak Park, MN  56357\r\n\r\nPhone:  320-420-2497\r\nFax:  320-294-5579\r\n\r\nI cover the entire state of Minnesota.  The majority of my work is in Central Minnesota and the Twin Cities Metro area, but don’t be afraid to contact me for a quote on any of my services, no matter where you are located.\r\n<h2>Use the Form Below to Get In Touch</h2>\r\n[gravityform id=\"2\" title=\"false\" description=\"true\"]','Contact','','inherit','closed','closed','','11-revision-v1','','','2016-05-10 10:11:11','2016-05-10 15:11:11','',11,'http://redbarnmn.com/2016/05/10/11-revision-v1/',0,'revision','',0),(64,1,'2016-05-10 11:27:02','2016-05-10 16:27:02','','Charlie Bemis','','inherit','open','closed','','charlie-bemis','','','2016-05-10 11:27:15','2016-05-10 16:27:15','',0,'http://redbarnmn.com/wp-content/uploads/2016/05/charlie-bemis.jpg',0,'attachment','image/jpeg',0),(65,1,'2016-05-11 22:33:58','2016-05-12 03:33:58','','red-barnwood-background','','inherit','open','closed','','red-barnwood-background','','','2016-05-11 22:33:58','2016-05-12 03:33:58','',0,'http://redbarnmn.com/wp-content/uploads/2016/05/red-barnwood-background.jpg',0,'attachment','image/jpeg',0),(66,1,'2016-05-11 23:16:20','2016-05-12 04:16:20','','midwest-home-background','','inherit','open','closed','','midwest-home-background','','','2016-05-11 23:16:20','2016-05-12 04:16:20','',0,'http://redbarnmn.com/wp-content/uploads/2016/05/midwest-home-background.jpg',0,'attachment','image/jpeg',0),(73,1,'2017-03-20 09:53:06','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2017-03-20 09:53:06','0000-00-00 00:00:00','',0,'http://redbarnmn.com/?p=73',0,'post','',0),(74,1,'2017-03-20 09:54:12','2017-03-20 14:54:12','The best way to contact me is to call the number below.  If I don’t answer leave me a message and I’ll return your call within 4 hours.  You can also contact me by using the form below.\r\n\r\nRed Barn Property Inspection LLC\r\nPhone:  320-420-2497\r\n\r\nI cover the entire state of Minnesota.  The majority of my work is in Central Minnesota and the Twin Cities Metro area, but don’t be afraid to contact me for a quote on any of my services, no matter where you are located.\r\n<h2>Use the Form Below to Get In Touch</h2>\r\n[gravityform id=\"1\" title=\"true\" description=\"false\"]','Contact','','inherit','closed','closed','','11-revision-v1','','','2017-03-20 09:54:12','2017-03-20 14:54:12','',11,'http://redbarnmn.com/2017/03/20/11-revision-v1/',0,'revision','',0),(76,1,'2017-03-20 10:03:36','2017-03-20 15:03:36','','Main Page','','publish','closed','closed','','main-page','','','2017-03-20 10:03:36','2017-03-20 15:03:36','',0,'http://redbarnmn.com/?p=76',1,'nav_menu_item','',0),(77,1,'2017-03-20 10:17:40','2017-03-20 15:17:40','','Red Barn Twitter Feed','','publish','closed','closed','','red-barn-twitter-feed','','','2017-03-20 10:17:40','2017-03-20 15:17:40','',0,'http://redbarnmn.com/?post_type=tfba_twitter_feed&#038;p=77',0,'tfba_twitter_feed','',0),(79,1,'2017-03-20 10:58:40','2017-03-20 15:58:40','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n<h2>Additional Services</h2>\r\nAdditional Services are options we provide to our clients they may need or want to add on to an inspection.  These include:  Water Testing, Sewer Line Inspection, Outbuilding Inspection, Lead Testing, Mold Testing,  and Radon Testing.\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.','Services','','inherit','closed','closed','','7-revision-v1','','','2017-03-20 10:58:40','2017-03-20 15:58:40','',7,'http://redbarnmn.com/2017/03/20/7-revision-v1/',0,'revision','',0),(80,1,'2017-03-20 11:01:13','2017-03-20 16:01:13','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n<h2>Additional Services</h2>\r\nAdditional Services are typically options we provide to our clients they may need or want to add on to an inspection or consultation, but they can also be performed independently from any other inspection or consultation.  These include:\r\n<ul>\r\n	<li>Water Testing</li>\r\n	<li>Sewer Line Inspection</li>\r\n	<li>Outbuilding Inspection</li>\r\n	<li>Lead Testing</li>\r\n	<li>Mold Testing</li>\r\n	<li>Radon Testing</li>\r\n</ul>\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\r\n<h2>Aerial Inspection/Photography</h2>\r\nThe aerial inspection is for situations that require the inspection or photography of something that is too high off the ground to be safely inspected or photographed up close.  We use a drone equipped with a high resolution camera for this service.  This allows us to get good looks at roofs, grain bins, property lots, etc.\r\n<h2>Home Maintenance Consultation</h2>\r\nA home maintenance consultation is for home owners who want to know what type of maintenance they need to perform on their home to keep it in the best possible condition.  We will walk through the property and access what maintenance has been done and what maintenance needs to be done.  Valves, filters, and shutoffs will all be labeled and clients will receive maintenance schedules and maintenance booklets for future reference.  This consultation will help reduce energy costs and improve your homes energy efficiency.','Services','','inherit','closed','closed','','7-revision-v1','','','2017-03-20 11:01:13','2017-03-20 16:01:13','',7,'http://redbarnmn.com/2017/03/20/7-revision-v1/',0,'revision','',0),(81,1,'2017-03-20 11:02:14','2017-03-20 16:02:14','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\r\n<h2>Aerial Inspection/Photography</h2>\r\nThe aerial inspection is for situations that require the inspection or photography of something that is too high off the ground to be safely inspected or photographed up close.  We use a drone equipped with a high resolution camera for this service.  This allows us to get good looks at roofs, grain bins, property lots, etc.\r\n<h2>Home Maintenance Consultation</h2>\r\nA home maintenance consultation is for home owners who want to know what type of maintenance they need to perform on their home to keep it in the best possible condition.  We will walk through the property and access what maintenance has been done and what maintenance needs to be done.  Valves, filters, and shutoffs will all be labeled and clients will receive maintenance schedules and maintenance booklets for future reference.  This consultation will help reduce energy costs and improve your homes energy efficiency.\r\n<h2>Additional Services</h2>\r\nAdditional Services are typically options we provide to our clients they may need or want to add on to an inspection or consultation, but they can also be performed independently from any other inspection or consultation.  These include:\r\n<ul>\r\n	<li>Water Testing</li>\r\n	<li>Sewer Line Inspection</li>\r\n	<li>Outbuilding Inspection</li>\r\n	<li>Lead Testing</li>\r\n	<li>Mold Testing</li>\r\n	<li>Radon Testing</li>\r\n</ul>','Services','','inherit','closed','closed','','7-revision-v1','','','2017-03-20 11:02:14','2017-03-20 16:02:14','',7,'http://redbarnmn.com/2017/03/20/7-revision-v1/',0,'revision','',0),(82,1,'2017-03-20 11:04:08','2017-03-20 16:04:08','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\r\n<h2>Aerial Inspection/Photography</h2>\r\nThe aerial inspection is for situations that require the inspection or photography of something that is too high off the ground to be safely inspected or photographed up close.  We use a drone equipped with a high resolution camera for this service.  This allows us to get good looks at roofs, grain bins, property lots, etc.\r\n<h2>Home Maintenance Consultation</h2>\r\nA home maintenance consultation is for home owners who want to know what type of maintenance they need to perform on their home to keep it in the best possible condition.  We will walk through the property and access what maintenance has been done and what maintenance needs to be done.  Valves, filters, and shutoffs will all be labeled and clients will receive maintenance schedules and maintenance booklets for future reference.  This consultation will help reduce energy costs and improve your homes energy efficiency.\r\n<h2>Additional Services</h2>\r\nAdditional Services are typically options we provide to our clients they may need or want to add on to an inspection or consultation, but they can also be performed independently from any other inspection or consultation.  These include:\r\n<ul>\r\n	<li>Water Testing</li>\r\n	<li>Sewer Line Inspection</li>\r\n	<li>Outbuilding Inspection</li>\r\n	<li>Lead Testing</li>\r\n	<li>Mold Testing</li>\r\n	<li>Radon Testing</li>\r\n</ul>','Services','','inherit','closed','closed','','7-revision-v1','','','2017-03-20 11:04:08','2017-03-20 16:04:08','',7,'http://redbarnmn.com/2017/03/20/7-revision-v1/',0,'revision','',0),(83,1,'2017-03-20 11:04:28','2017-03-20 16:04:28','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n\r\n<hr />\r\n\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\r\n<h2>Aerial Inspection/Photography</h2>\r\nThe aerial inspection is for situations that require the inspection or photography of something that is too high off the ground to be safely inspected or photographed up close.  We use a drone equipped with a high resolution camera for this service.  This allows us to get good looks at roofs, grain bins, property lots, etc.\r\n<h2>Home Maintenance Consultation</h2>\r\nA home maintenance consultation is for home owners who want to know what type of maintenance they need to perform on their home to keep it in the best possible condition.  We will walk through the property and access what maintenance has been done and what maintenance needs to be done.  Valves, filters, and shutoffs will all be labeled and clients will receive maintenance schedules and maintenance booklets for future reference.  This consultation will help reduce energy costs and improve your homes energy efficiency.\r\n<h2>Additional Services</h2>\r\nAdditional Services are typically options we provide to our clients they may need or want to add on to an inspection or consultation, but they can also be performed independently from any other inspection or consultation.  These include:\r\n<ul>\r\n	<li>Water Testing</li>\r\n	<li>Sewer Line Inspection</li>\r\n	<li>Outbuilding Inspection</li>\r\n	<li>Lead Testing</li>\r\n	<li>Mold Testing</li>\r\n	<li>Radon Testing</li>\r\n</ul>','Services','','inherit','closed','closed','','7-revision-v1','','','2017-03-20 11:04:28','2017-03-20 16:04:28','',7,'http://redbarnmn.com/2017/03/20/7-revision-v1/',0,'revision','',0),(84,1,'2017-03-20 11:05:48','2017-03-20 16:05:48','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n\r\n<hr />\r\n\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Aerial Inspection/Photography</h2>\r\nThe aerial inspection is for situations that require the inspection or photography of something that is too high off the ground to be safely inspected or photographed up close.  We use a drone equipped with a high resolution camera for this service.  This allows us to get good looks at roofs, grain bins, property lots, etc.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Home Maintenance Consultation</h2>\r\nA home maintenance consultation is for home owners who want to know what type of maintenance they need to perform on their home to keep it in the best possible condition.  We will walk through the property and access what maintenance has been done and what maintenance needs to be done.  Valves, filters, and shutoffs will all be labeled and clients will receive maintenance schedules and maintenance booklets for future reference.  This consultation will help reduce energy costs and improve your homes energy efficiency.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Additional Services</h2>\r\nAdditional Services are typically options we provide to our clients they may need or want to add on to an inspection or consultation, but they can also be performed independently from any other inspection or consultation.  These include:\r\n<ul>\r\n	<li>Water Testing</li>\r\n	<li>Sewer Line Inspection</li>\r\n	<li>Outbuilding Inspection</li>\r\n	<li>Lead Testing</li>\r\n	<li>Mold Testing</li>\r\n	<li>Radon Testing</li>\r\n</ul>','Services','','inherit','closed','closed','','7-revision-v1','','','2017-03-20 11:05:48','2017-03-20 16:05:48','',7,'http://redbarnmn.com/2017/03/20/7-revision-v1/',0,'revision','',0),(85,1,'2017-03-20 11:06:28','2017-03-20 16:06:28','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will  allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n\r\n<hr />\r\n\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n\r\n<hr />\r\n\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n\r\n<hr />\r\n\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n\r\n<hr />\r\n\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n\r\n<hr />\r\n\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n\r\n<hr />\r\n\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\r\n\r\n<hr />\r\n\r\n<h2>Aerial Inspection/Photography</h2>\r\nThe aerial inspection is for situations that require the inspection or photography of something that is too high off the ground to be safely inspected or photographed up close.  We use a drone equipped with a high resolution camera for this service.  This allows us to get good looks at roofs, grain bins, property lots, etc.\r\n\r\n<hr />\r\n\r\n<h2>Home Maintenance Consultation</h2>\r\nA home maintenance consultation is for home owners who want to know what type of maintenance they need to perform on their home to keep it in the best possible condition.  We will walk through the property and access what maintenance has been done and what maintenance needs to be done.  Valves, filters, and shutoffs will all be labeled and clients will receive maintenance schedules and maintenance booklets for future reference.  This consultation will help reduce energy costs and improve your homes energy efficiency.\r\n\r\n<hr />\r\n\r\n<h2>Additional Services</h2>\r\nAdditional Services are typically options we provide to our clients they may need or want to add on to an inspection or consultation, but they can also be performed independently from any other inspection or consultation.  These include:\r\n<ul>\r\n	<li>Water Testing</li>\r\n	<li>Sewer Line Inspection</li>\r\n	<li>Outbuilding Inspection</li>\r\n	<li>Lead Testing</li>\r\n	<li>Mold Testing</li>\r\n	<li>Radon Testing</li>\r\n</ul>','Services','','inherit','closed','closed','','7-revision-v1','','','2017-03-20 11:06:28','2017-03-20 16:06:28','',7,'http://redbarnmn.com/2017/03/20/7-revision-v1/',0,'revision','',0),(86,1,'2017-03-20 11:09:21','2017-03-20 16:09:21','','redbarn-logo-edited','','inherit','open','closed','','redbarn-logo-edited','','','2017-03-20 11:09:21','2017-03-20 16:09:21','',0,'http://redbarnmn.com/wp-content/uploads/2017/03/redbarn-logo-edited.png',0,'attachment','image/png',0),(87,1,'2017-03-20 11:28:16','2017-03-20 16:28:16','<h2>Pricing for services</h2>\r\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\r\n<ul>\r\n	<li>Total square footage of property/home</li>\r\n	<li>Age of property/home</li>\r\n	<li>Where the property/home is located</li>\r\n</ul>\r\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And, I cover the entire state of Minnesota, but the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\r\n\r\nYou can contact me directly or use the form below to send me a service request online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.\r\n<h2>What exactly is a general home inspection and what does it cover?</h2>\r\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\r\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\r\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\r\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\r\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\r\n<ul>\r\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\r\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\r\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\r\n</ul>\r\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\r\n<h2>How long does a home inspection take?</h2>\r\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected.  Common sense tells us the bigger a property is, the longer it is going to take to inspect.  And, older properties tend to have more issues, so they also take longer to inspect.  Many times the listing for a property only states total finished square footage.  This number does not include unfinished basements or unfinished utility rooms and storage areas.  I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly.  Normally clients show up only for the walk through portion of the inspection.  At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc.  If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection.  On average I tend to spend more time at a property and with my clients compared to other inspectors.  The list below gives approximate lengths of time for inspections.\r\n<ul>\r\n	<li>Under 1500 total square feet - 1.5 to 2.5 hours for inspection, 1 to 1.5 hours for walk through, 2.5 to 4 hours total</li>\r\n	<li>1500 - 2000 total square feet - 2 to 3 hours for inspection, 1 to 2 hours for walk through, 3.5 to 5 hours total</li>\r\n	<li>2000 - 2500 total square feet - 2.5 to 4 hours for inspection, 1 to 2 hours for walk through, 4 to 5.5 hours total</li>\r\n	<li>2500 - 3000 total square feet - 3 to 4.5 hours for inspection, 1 to 2 hours for walk through, 4.5 to 6 hours total</li>\r\n	<li>3000 - 3500 total square feet - 3.5 to 5 hours for inspection, 1 to 2 hours for walk through, 5 to 6.5 hours total</li>\r\n	<li>3500 - 4000 total square feet - 4 to 5.5 hours for inspection, 1 to 2 hours for walk through, 5.5 to 7 hours total</li>\r\n	<li>4000 - 4500 total square feet - 4.5 to 6 hours for inspection, 1 to 2 hours for walk through, 6 to 7.5 hours total</li>\r\n	<li>over 4500 square feet - contact me for details</li>\r\n</ul>\r\n[gravityform id=\"1\" title=\"true\" description=\"true\"]','Inspections','','inherit','closed','closed','','2-revision-v1','','','2017-03-20 11:28:16','2017-03-20 16:28:16','',2,'http://redbarnmn.com/2017/03/20/2-revision-v1/',0,'revision','',0),(88,1,'2017-03-20 11:30:33','2017-03-20 16:30:33','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address, please <a href=\"http://redbarnmn.com/contact-us/\">contact me</a> and I will be happy to answer them (or at least try).\r\n\r\n&nbsp;\r\n<h2>Why should I get a home inspection?</h2>\r\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\r\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\r\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\r\n<h2>Why do we use an electronic report rather than a paper report?</h2>\r\nDuring our inspections we take hundreds of pictures. These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them. Most people don’t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about. Because these pictures are so important to the report it is necessary to use inspection reporting software. When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes. When the report is finished it is sent to the email address provided by the client at the inspection. The report can also be sent to the client’s realtor if they so wish. By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment. You can review the report on your computer or print it out if you want a paper copy for your records. If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you. The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision. Reports are typically completed within 48 hours of the home inspection. We feel doing things this way gives our clients a better overall product.\r\n<h2>Who do we recommend for real estate agents and Mortgage Professionals?</h2>\r\nI take referrals very seriously, I won’t refer just anyone.  People must be trustworthy and knowledgeable for me to refer them, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they’ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\">\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n\r\n</div>','FAQs','','inherit','closed','closed','','9-revision-v1','','','2017-03-20 11:30:33','2017-03-20 16:30:33','',9,'http://redbarnmn.com/2017/03/20/9-revision-v1/',0,'revision','',0),(89,1,'2017-03-20 11:30:43','2017-03-20 16:30:43','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address, please <a href=\"http://redbarnmn.com/contact-us/\">contact me</a> and I will be happy to answer them (or at least try).\r\n<h2>Why should I get a home inspection?</h2>\r\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\r\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\r\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\r\n<h2>Why do we use an electronic report rather than a paper report?</h2>\r\nDuring our inspections we take hundreds of pictures. These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them. Most people don’t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about. Because these pictures are so important to the report it is necessary to use inspection reporting software. When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes. When the report is finished it is sent to the email address provided by the client at the inspection. The report can also be sent to the client’s realtor if they so wish. By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment. You can review the report on your computer or print it out if you want a paper copy for your records. If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you. The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision. Reports are typically completed within 48 hours of the home inspection. We feel doing things this way gives our clients a better overall product.\r\n<h2>Who do we recommend for real estate agents and Mortgage Professionals?</h2>\r\nI take referrals very seriously, I won’t refer just anyone.  People must be trustworthy and knowledgeable for me to refer them, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they’ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\">\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n\r\n</div>','FAQs','','inherit','closed','closed','','9-revision-v1','','','2017-03-20 11:30:43','2017-03-20 16:30:43','',9,'http://redbarnmn.com/2017/03/20/9-revision-v1/',0,'revision','',0),(90,1,'2017-03-20 11:44:24','2017-03-20 16:44:24','<h2>What exactly is a general home inspection and what does it cover?</h2>\r\n<p style=\"text-align: left;\">Items inspected include:</p>\r\n\r\n<ul>\r\n	<li style=\"text-align: left;\">Foundation</li>\r\n	<li style=\"text-align: left;\">Structure</li>\r\n	<li style=\"text-align: left;\">Basement or crawl space</li>\r\n	<li style=\"text-align: left;\">Interior and exterior walls</li>\r\n	<li style=\"text-align: left;\">Siding</li>\r\n	<li style=\"text-align: left;\">Electrical system</li>\r\n	<li style=\"text-align: left;\">Water heater</li>\r\n	<li style=\"text-align: left;\">Heating and air conditioning systems</li>\r\n	<li style=\"text-align: left;\">Fireplace and exterior chimney</li>\r\n	<li style=\"text-align: left;\">Plumbing system and fixtures</li>\r\n	<li style=\"text-align: left;\">Porches and decks</li>\r\n	<li style=\"text-align: left;\">Attic</li>\r\n	<li style=\"text-align: left;\">Roof</li>\r\n	<li style=\"text-align: left;\">Gutters</li>\r\n	<li style=\"text-align: left;\">Slope and Grade on Property</li>\r\n</ul>\r\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\r\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\r\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\r\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\r\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\r\n<ul>\r\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\r\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\r\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\r\n</ul>\r\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\r\n<h2>How long does a home inspection take?</h2>\r\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected. Common sense tells us the bigger a property is, the longer it is going to take to inspect. And, older properties tend to have more issues, so they also take longer to inspect. Many times the listing for a property only states total finished square footage. This number does not include unfinished basements or unfinished utility rooms and storage areas. I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly. Normally clients show up only for the walk through portion of the inspection. At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc. If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection. On average I am at an inspection for 4 to 6 hours, the walk through portion with the client(s) is 1 to 2 hours.\r\n<h2>Pricing for services</h2>\r\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\r\n<ul>\r\n	<li>Total square footage of property/home</li>\r\n	<li>Age of property/home</li>\r\n	<li>Where the property/home is located</li>\r\n</ul>\r\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And, I cover the entire state of Minnesota, but the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\r\n\r\nYou can contact me directly or use the form below to send me a service request online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.\r\n<h1>Contact for Inspection</h1>\r\n[gravityform id=\"1\" title=\"false\" description=\"true\"]','Inspections','','inherit','closed','closed','','2-revision-v1','','','2017-03-20 11:44:24','2017-03-20 16:44:24','',2,'http://redbarnmn.com/2017/03/20/2-revision-v1/',0,'revision','',0),(91,1,'2017-03-20 11:44:55','2017-03-20 16:44:55','<h2>What exactly is a general home inspection and what does it cover?</h2>\r\n<p style=\"text-align: left;\">Items inspected include:</p>\r\n\r\n<ul>\r\n	<li style=\"text-align: left;\">Foundation</li>\r\n	<li style=\"text-align: left;\">Structure</li>\r\n	<li style=\"text-align: left;\">Basement or crawl space</li>\r\n	<li style=\"text-align: left;\">Interior and exterior walls</li>\r\n	<li style=\"text-align: left;\">Siding</li>\r\n	<li style=\"text-align: left;\">Electrical system</li>\r\n	<li style=\"text-align: left;\">Water heater</li>\r\n	<li style=\"text-align: left;\">Heating and air conditioning systems</li>\r\n	<li style=\"text-align: left;\">Fireplace and exterior chimney</li>\r\n	<li style=\"text-align: left;\">Plumbing system and fixtures</li>\r\n	<li style=\"text-align: left;\">Porches and decks</li>\r\n	<li style=\"text-align: left;\">Attic</li>\r\n	<li style=\"text-align: left;\">Roof</li>\r\n	<li style=\"text-align: left;\">Gutters</li>\r\n	<li style=\"text-align: left;\">Slope and Grade on Property</li>\r\n</ul>\r\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\r\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\r\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\r\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\r\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\r\n<ul>\r\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\r\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\r\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\r\n</ul>\r\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\r\n<h2>How long does a home inspection take?</h2>\r\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected. Common sense tells us the bigger a property is, the longer it is going to take to inspect. And, older properties tend to have more issues, so they also take longer to inspect. Many times the listing for a property only states total finished square footage. This number does not include unfinished basements or unfinished utility rooms and storage areas. I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly. Normally clients show up only for the walk through portion of the inspection. At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc. If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection. On average I am at an inspection for 4 to 6 hours, the walk through portion with the client(s) is 1 to 2 hours.\r\n<h2>Pricing for services</h2>\r\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\r\n<ul>\r\n	<li>Total square footage of property/home</li>\r\n	<li>Age of property/home</li>\r\n	<li>Where the property/home is located</li>\r\n</ul>\r\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And, I cover the entire state of Minnesota, but the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\r\n\r\nYou can contact me directly or use the form below to send me a service request online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.\r\n<h2>Contact for Inspection</h2>\r\n[gravityform id=\"1\" title=\"false\" description=\"true\"]','Inspections','','inherit','closed','closed','','2-revision-v1','','','2017-03-20 11:44:55','2017-03-20 16:44:55','',2,'http://redbarnmn.com/2017/03/20/2-revision-v1/',0,'revision','',0),(92,1,'2017-03-20 11:51:11','2017-03-20 16:51:11','<h2>What exactly is a general home inspection and what does it cover?</h2>\r\n<p style=\"text-align: left;\">Items inspected include:</p>\r\n\r\n<ul>\r\n	<li style=\"text-align: left;\">Foundation</li>\r\n	<li style=\"text-align: left;\">Structure</li>\r\n	<li style=\"text-align: left;\">Basement or crawl space</li>\r\n	<li style=\"text-align: left;\">Interior and exterior walls</li>\r\n	<li style=\"text-align: left;\">Siding</li>\r\n	<li style=\"text-align: left;\">Electrical system</li>\r\n	<li style=\"text-align: left;\">Water heater</li>\r\n	<li style=\"text-align: left;\">Heating and air conditioning systems</li>\r\n	<li style=\"text-align: left;\">Fireplace and exterior chimney</li>\r\n	<li style=\"text-align: left;\">Plumbing system and fixtures</li>\r\n	<li style=\"text-align: left;\">Porches and decks</li>\r\n	<li style=\"text-align: left;\">Attic</li>\r\n	<li style=\"text-align: left;\">Roof</li>\r\n	<li style=\"text-align: left;\">Gutters</li>\r\n	<li style=\"text-align: left;\">Slope and Grade on Property</li>\r\n</ul>\r\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\r\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\r\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\r\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\r\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\r\n<ul>\r\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\r\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\r\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\r\n</ul>\r\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>How long does a home inspection take?</h2>\r\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected. Common sense tells us the bigger a property is, the longer it is going to take to inspect. And, older properties tend to have more issues, so they also take longer to inspect. Many times the listing for a property only states total finished square footage. This number does not include unfinished basements or unfinished utility rooms and storage areas. I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly. Normally clients show up only for the walk through portion of the inspection. At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc. If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection. On average I am at an inspection for 4 to 6 hours, the walk through portion with the client(s) is 1 to 2 hours.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Pricing for services</h2>\r\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\r\n<ul>\r\n	<li>Total square footage of property/home</li>\r\n	<li>Age of property/home</li>\r\n	<li>Where the property/home is located</li>\r\n</ul>\r\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And, I cover the entire state of Minnesota, but the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\r\n\r\nYou can contact me directly or use the form below to send me a service request online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Contact for Inspection</h2>\r\n[gravityform id=\"1\" title=\"false\" description=\"true\"]','Inspections','','inherit','closed','closed','','2-revision-v1','','','2017-03-20 11:51:11','2017-03-20 16:51:11','',2,'http://redbarnmn.com/2017/03/20/2-revision-v1/',0,'revision','',0),(93,1,'2017-03-20 11:51:31','2017-03-20 16:51:31','<h2>What exactly is a general home inspection and what does it cover?</h2>\r\n<p style=\"text-align: left;\">Items inspected include:</p>\r\n\r\n<ul>\r\n	<li style=\"text-align: left;\">Foundation</li>\r\n	<li style=\"text-align: left;\">Structure</li>\r\n	<li style=\"text-align: left;\">Basement or crawl space</li>\r\n	<li style=\"text-align: left;\">Interior and exterior walls</li>\r\n	<li style=\"text-align: left;\">Siding</li>\r\n	<li style=\"text-align: left;\">Electrical system</li>\r\n	<li style=\"text-align: left;\">Water heater</li>\r\n	<li style=\"text-align: left;\">Heating and air conditioning systems</li>\r\n	<li style=\"text-align: left;\">Fireplace and exterior chimney</li>\r\n	<li style=\"text-align: left;\">Plumbing system and fixtures</li>\r\n	<li style=\"text-align: left;\">Porches and decks</li>\r\n	<li style=\"text-align: left;\">Attic</li>\r\n	<li style=\"text-align: left;\">Roof</li>\r\n	<li style=\"text-align: left;\">Gutters</li>\r\n	<li style=\"text-align: left;\">Slope and Grade on Property</li>\r\n</ul>\r\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\r\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\r\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\r\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\r\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\r\n<ul>\r\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\r\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\r\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\r\n</ul>\r\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\r\n\r\n<hr />\r\n\r\n<h2>How long does a home inspection take?</h2>\r\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected. Common sense tells us the bigger a property is, the longer it is going to take to inspect. And, older properties tend to have more issues, so they also take longer to inspect. Many times the listing for a property only states total finished square footage. This number does not include unfinished basements or unfinished utility rooms and storage areas. I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly. Normally clients show up only for the walk through portion of the inspection. At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc. If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection. On average I am at an inspection for 4 to 6 hours, the walk through portion with the client(s) is 1 to 2 hours.\r\n\r\n<hr />\r\n\r\n<h2>Pricing for services</h2>\r\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\r\n<ul>\r\n	<li>Total square footage of property/home</li>\r\n	<li>Age of property/home</li>\r\n	<li>Where the property/home is located</li>\r\n</ul>\r\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And, I cover the entire state of Minnesota, but the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\r\n\r\nYou can contact me directly or use the form below to send me a service request online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.\r\n\r\n<hr />\r\n\r\n<h2>Contact for Inspection</h2>\r\n[gravityform id=\"1\" title=\"false\" description=\"true\"]','Inspections','','inherit','closed','closed','','2-revision-v1','','','2017-03-20 11:51:31','2017-03-20 16:51:31','',2,'http://redbarnmn.com/2017/03/20/2-revision-v1/',0,'revision','',0),(94,1,'2017-03-20 11:52:25','2017-03-20 16:52:25','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address, please <a href=\"http://redbarnmn.com/contact-us/\">contact me</a> and I will be happy to answer them (or at least try).\r\n<h2>Why should I get a home inspection?</h2>\r\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\r\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Why do we use an electronic report rather than a paper report?</h2>\r\nDuring our inspections we take hundreds of pictures. These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them. Most people don’t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about. Because these pictures are so important to the report it is necessary to use inspection reporting software. When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes. When the report is finished it is sent to the email address provided by the client at the inspection. The report can also be sent to the client’s realtor if they so wish. By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment. You can review the report on your computer or print it out if you want a paper copy for your records. If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you. The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision. Reports are typically completed within 48 hours of the home inspection. We feel doing things this way gives our clients a better overall product.\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Who do we recommend for real estate agents and Mortgage Professionals?</h2>\r\nI take referrals very seriously, I won’t refer just anyone.  People must be trustworthy and knowledgeable for me to refer them, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they’ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\">\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n\r\n</div>','FAQs','','inherit','closed','closed','','9-revision-v1','','','2017-03-20 11:52:25','2017-03-20 16:52:25','',9,'http://redbarnmn.com/2017/03/20/9-revision-v1/',0,'revision','',0),(95,1,'2017-03-20 11:52:42','2017-03-20 16:52:42','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address, please <a href=\"http://redbarnmn.com/contact-us/\">contact me</a> and I will be happy to answer them (or at least try).\r\n<h2>Why should I get a home inspection?</h2>\r\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\r\n\r\n<hr />\r\n\r\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\r\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\r\n\r\n<hr />\r\n\r\n<h2>Why do we use an electronic report rather than a paper report?</h2>\r\nDuring our inspections we take hundreds of pictures. These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them. Most people don’t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about. Because these pictures are so important to the report it is necessary to use inspection reporting software. When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes. When the report is finished it is sent to the email address provided by the client at the inspection. The report can also be sent to the client’s realtor if they so wish. By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment. You can review the report on your computer or print it out if you want a paper copy for your records. If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you. The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision. Reports are typically completed within 48 hours of the home inspection. We feel doing things this way gives our clients a better overall product.\r\n\r\n<hr />\r\n\r\n<h2>Who do we recommend for real estate agents and Mortgage Professionals?</h2>\r\nI take referrals very seriously, I won’t refer just anyone.  People must be trustworthy and knowledgeable for me to refer them, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they’ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h2>Real Estate Agents</h2>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\">\r\n<h2>Mortgage Professionals (Loan Officers)</h2>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n\r\n</div>','FAQs','','inherit','closed','closed','','9-revision-v1','','','2017-03-20 11:52:42','2017-03-20 16:52:42','',9,'http://redbarnmn.com/2017/03/20/9-revision-v1/',0,'revision','',0),(96,1,'2017-03-20 11:53:42','2017-03-20 16:53:42','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address, please <a href=\"http://redbarnmn.com/contact-us/\">contact me</a> and I will be happy to answer them (or at least try).\r\n<h2>Why should I get a home inspection?</h2>\r\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\r\n\r\n<hr />\r\n\r\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\r\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\r\n\r\n<hr />\r\n\r\n<h2>Why do we use an electronic report rather than a paper report?</h2>\r\nDuring our inspections we take hundreds of pictures. These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them. Most people don’t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about. Because these pictures are so important to the report it is necessary to use inspection reporting software. When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes. When the report is finished it is sent to the email address provided by the client at the inspection. The report can also be sent to the client’s realtor if they so wish. By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment. You can review the report on your computer or print it out if you want a paper copy for your records. If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you. The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision. Reports are typically completed within 48 hours of the home inspection. We feel doing things this way gives our clients a better overall product.\r\n\r\n<hr />\r\n\r\n<h2>Who do we recommend for real estate agents and Mortgage Professionals?</h2>\r\nI take referrals very seriously, I won’t refer just anyone.  People must be trustworthy and knowledgeable for me to refer them, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they’ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h3>Real Estate Agents</h3>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\">\r\n<h3>Mortgage Professionals (Loan Officers)</h3>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n\r\n</div>','FAQs','','inherit','closed','closed','','9-revision-v1','','','2017-03-20 11:53:42','2017-03-20 16:53:42','',9,'http://redbarnmn.com/2017/03/20/9-revision-v1/',0,'revision','',0),(97,2,'2017-03-23 15:39:55','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2017-03-23 15:39:55','0000-00-00 00:00:00','',0,'http://redbarnmn.com/?p=97',0,'post','',0),(99,1,'2017-03-24 10:08:09','2017-03-24 15:08:09','Below are questions I hear all of the time regarding home inspections and home inspectors.  Hopefully if you have similar questions they will be answered here.  If you have other questions that I don’t address, please <a href=\"http://redbarnmn.com/contact/\">contact me</a> and I will be happy to answer them (or at least try).\r\n<h2>Why should I get a home inspection?</h2>\r\nA home inspection can save you from making a very expensive mistake.  Most people are unaware of how complex a home is and how all of the individual systems of a home work.  Home inspectors usually have a background in construction and have went through extensive training and continuing education.  An inspector knows where and how to look for problems or signs of problems that can be bigger issues.  Even if you are an electrician, plumber, framer, etc. you likely won’t know much about all of the other very important systems of a house and how they work together.  A home inspection provides you with more information to help you make the best possible decision regarding a property.\r\n\r\n<hr />\r\n\r\n<h2>Do home inspectors need to have a license in Minnesota?</h2>\r\nUnfortunately the answer to this question is NO.  Any home inspector that claims to be licensed is not licensed by the state of Minnesota when it comes to general home inspections typically purchased by the potential buyer of a property.  Some cities around the metro area do require licensing for their “Truth in Housing” programs, but this is a special type of inspection that the seller of a property is required to have performed, not the buyer of a property.  Many other states require home inspectors to be licensed, including Wisconsin, North Dakota, and South Dakota but Minnesota has not yet passed any such law.  I totally support the idea of requiring home inspectors to be licensed and I believe Minnesota will pass this type of legislation in the near future.\r\n\r\n<hr />\r\n\r\n<h2>Why do we use an electronic report rather than a paper report?</h2>\r\nDuring our inspections we take hundreds of pictures. These pictures help us document a property, but they also provide the client with a great explanation of what we are trying to tell them. Most people don’t understand many of the defects found during a home inspection, but if I am able to show them a picture of the defect along with a description of the issue they have a better idea of what I am talking about. Because these pictures are so important to the report it is necessary to use inspection reporting software. When the inspector prepares the report after the inspection they are able to review the entire inspection by going through the pictures and listening to the voice recordings of the inspection notes. When the report is finished it is sent to the email address provided by the client at the inspection. The report can also be sent to the client’s realtor if they so wish. By sending the report over email we are able to save a minimum of 30-50 pages of paper per inspection and that is good for the environment. You can review the report on your computer or print it out if you want a paper copy for your records. If you don’t have an email address, a printer, or a computer we will send the report to your realtor and they can print a copy of the report for you. The major issues are brought to your attention during the walk through portion of the inspection, so when you leave the inspection you will have the information you need to make the best possible decision. Reports are typically completed within 48 hours of the home inspection. We feel doing things this way gives our clients a better overall product.\r\n\r\n<hr />\r\n\r\n<h2>Who do we recommend for real estate agents and Mortgage Professionals?</h2>\r\nI take referrals very seriously, I won’t refer just anyone.  People must be trustworthy and knowledgeable for me to refer them, all of the people below have those qualities.  These are the people I refer to my family and friends, if you ever need anything reach out to any of them and I know they’ll be happy to help.\r\n<div class=\"one-half first\">\r\n<h3>Real Estate Agents</h3>\r\nSandy Miller\r\n612-618-8538\r\n<a href=\"mailto:sm_miller@ymail.com\">sm_miller@ymail.com</a>\r\nServing Central MN\r\nLocated in Princeton, MN\r\n\r\nRoss Burau\r\n320-224-2993\r\n<a href=\"mailto:rburau44@gmail.com\">rburau44@gmail.com</a>\r\nServing Central MN and the Twin Cities Metro Area\r\nLocated in Becker, MN\r\n\r\nTommy Anderson\r\n952-292-1039\r\n<a href=\"mailto:tommy.anderson@remax.net\">tommy.anderson@remax.net</a>\r\nServing the Twin Cities Metro Area and Southern MN\r\nLocated in Prior Lake, MN\r\n\r\nMatt Imdieke\r\n320-420-1295\r\n<a href=\"mailto:Matt@CentralMNRealty.com\">Matt@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nJacob Imdieke\r\n320-491-7157\r\n<a href=\"mailto:Jacob@CentralMNRealty.com\">Jacob@CentralMNRealty.com</a>\r\nServing Central MN\r\nLocated in St. Cloud, MN\r\n\r\nRob Droogsma\r\n320-224-7081\r\n<a href=\"mailto:robdroogsma@yahoo.com\">robdroogsma@yahoo.com</a>\r\nServing Central MN\r\nLocated in Milaca, MN\r\n\r\n</div>\r\n<div class=\"one-half\">\r\n<h3>Mortgage Professionals (Loan Officers)</h3>\r\nDarin (Curby) Keimig\r\n612-363-8221\r\n<a href=\"mailto:darin.keimig@loanpacific.com\">darin.keimig@loanpacific.com</a>\r\n<a href=\"mailto:darin@darinkeimig.com\">darin@darinkeimig.com</a>\r\nServing all of MN\r\nLocated in Prior Lake, MN\r\n\r\n</div>','FAQs','','inherit','closed','closed','','9-revision-v1','','','2017-03-24 10:08:09','2017-03-24 15:08:09','',9,'http://redbarnmn.com/2017/03/24/9-revision-v1/',0,'revision','',0),(100,1,'2017-03-24 10:13:11','2017-03-24 15:13:11','The best way to contact me is to call or text the number below.  If I don’t answer leave me a message and I’ll return your call within 4 hours.  You can also contact me by using the form below.\r\n\r\nRed Barn Property Inspection LLC\r\nPhone:  320-420-2497\r\n\r\nI cover the entire state of Minnesota.  The majority of my work is in Central Minnesota and the Twin Cities Metro area, but don’t be afraid to contact me for a quote on any of my services, no matter where you are located.\r\n<h2>Use the Form Below to Get In Touch</h2>\r\n[gravityform id=\"1\" title=\"true\" description=\"false\"]','Contact','','inherit','closed','closed','','11-revision-v1','','','2017-03-24 10:13:11','2017-03-24 15:13:11','',11,'http://redbarnmn.com/2017/03/24/11-revision-v1/',0,'revision','',0),(101,1,'2017-03-24 10:15:35','2017-03-24 15:15:35','<h2>Home Buyer Inspection</h2>\r\nThe Home Buyer Inspection is the most common type of inspection we perform.  Having a home inspected before you buy it can save you from making a costly mistake.  Our expertise will allow you to make an informed decision regarding one of the biggest purchases you’ll ever make.\r\n\r\n<hr />\r\n\r\n<h2>Home Seller Inspection</h2>\r\nThe Home Seller Inspection is almost identical to the Home Buyer Inspection, except this inspection benefits both the seller and the buyer of a home.  A seller can have an inspection performed on their home and use it as a selling point for the property.  The inspection can show the seller what improvements need to be made to the home and give them a chance to fix them or adjust their price accordingly.  This inspection can be used by the buyer, saving them the cost of a home inspection.\r\n\r\n<hr />\r\n\r\n<h2>Home Seller Consultation</h2>\r\nThe Home Seller Consultation is not an in depth inspection.  Instead, it is a consultation for people who want to know what they can do to help their home sell faster and for more money.  We will meet with the homeowner and view the property.  From there we will advise the homeowner on what they can do to their home to make it more appealing to buyers.  Many times the small changes we suggest can make the difference between a house selling fast or sitting on the market for months.\r\n\r\n<hr />\r\n\r\n<h2>Energy Consultation</h2>\r\nAn energy consultation is a meeting between an inspector and a property owner for the purpose of decreasing the property owners energy and water consumption, saving the property owner money and reducing their impact on the environment.  This inspection focuses on lower cost changes that can be made to any property.\r\n\r\n<hr />\r\n\r\n<h2>Thermal Imaging</h2>\r\nThermal Imaging uses a thermal imaging camera to find gaps in insulation, water intrusion, lack of insulation, air leaks, etc.  Thermal Imaging often finds hidden problems or damage that a visual inspection will not uncover.\r\n\r\n<hr />\r\n\r\n<h2>Water Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of water they use.  Some of the options include water saving faucets, water saving toilets, water saving shower heads, rain collection systems, etc.  These packages often result in energy savings as well.\r\n\r\n<hr />\r\n\r\n<h2>Energy Saving Packages</h2>\r\nThese packages give the property owner a variety of ways they can reduce the amount of energy they use.  We have plans that will cut electrical use, natural gas use, and propane use.  Some examples of packages include adding insulation, sealing up air leaks, converting to CFL or LED bulbs, etc.\r\n\r\n<hr />\r\n\r\n<h2>Aerial Inspection/Photography</h2>\r\nThe aerial inspection is for situations that require the inspection or photography of something that is too high off the ground to be safely inspected or photographed up close.  We use a drone equipped with a high resolution camera for this service.  This allows us to get good looks at roofs, grain bins, property lots, etc.\r\n\r\n<hr />\r\n\r\n<h2>Home Maintenance Consultation</h2>\r\nA home maintenance consultation is for home owners who want to know what type of maintenance they need to perform on their home to keep it in the best possible condition.  We will walk through the property and access what maintenance has been done and what maintenance needs to be done.  Valves, filters, and shutoffs will all be labeled and clients will receive maintenance schedules and maintenance booklets for future reference.  This consultation will help reduce energy costs and improve your homes energy efficiency.\r\n\r\n<hr />\r\n\r\n<h2>Additional Services</h2>\r\nAdditional Services are typically options we provide to our clients they may need or want to add on to an inspection or consultation, but they can also be performed independently from any other inspection or consultation.  These include:\r\n<ul>\r\n	<li>Water Testing</li>\r\n	<li>Sewer Line Inspection</li>\r\n	<li>Outbuilding Inspection</li>\r\n	<li>Lead Testing</li>\r\n	<li>Mold Testing</li>\r\n	<li>Radon Testing</li>\r\n</ul>','Services','','inherit','closed','closed','','7-revision-v1','','','2017-03-24 10:15:35','2017-03-24 15:15:35','',7,'http://redbarnmn.com/2017/03/24/7-revision-v1/',0,'revision','',0),(102,1,'2017-03-24 10:22:53','2017-03-24 15:22:53','<h2>What exactly is a general home inspection and what does it cover?</h2>\r\n<p style=\"text-align: left;\">Items inspected include:</p>\r\n\r\n<ul>\r\n	<li style=\"text-align: left;\">Foundation</li>\r\n	<li style=\"text-align: left;\">Structure</li>\r\n	<li style=\"text-align: left;\">Basement or crawl space</li>\r\n	<li style=\"text-align: left;\">Interior and exterior walls</li>\r\n	<li style=\"text-align: left;\">Siding</li>\r\n	<li style=\"text-align: left;\">Electrical system</li>\r\n	<li style=\"text-align: left;\">Water heater</li>\r\n	<li style=\"text-align: left;\">Heating and air conditioning systems</li>\r\n	<li style=\"text-align: left;\">Fireplace and exterior chimney</li>\r\n	<li style=\"text-align: left;\">Plumbing system and fixtures</li>\r\n	<li style=\"text-align: left;\">Porches and decks</li>\r\n	<li style=\"text-align: left;\">Attic</li>\r\n	<li style=\"text-align: left;\">Roof</li>\r\n	<li style=\"text-align: left;\">Gutters</li>\r\n	<li style=\"text-align: left;\">Slope and Grade on Property</li>\r\n</ul>\r\nThe International Association of Certified Home Inspectors (InterNachi) gives this definition:\r\n<p style=\"padding-left: 30px;\">A general home inspection is a non-invasive, visual examination of the accessible areas of a residential property (as delineated below), performed for a fee, which is designed to identify defects within specific systems and components defined by these Standards that are both observed and deemed material by the inspector.  The scope of work may be modified by the Client and Inspector prior to the inspection process.</p>\r\n<p style=\"padding-left: 30px;\">I.    The general home inspection is based on the observations made on the date of the inspection, and not a prediction of future conditions.</p>\r\n<p style=\"padding-left: 30px;\">II.    The general home inspection will not reveal every issue that exists or ever could exist, but only those material defects observed on the date of the inspection.</p>\r\nThis is only a very small part of the International Standards of Practice for Performing a General Home Inspection.  If you would like a complete list of these standards please click on this link (<a href=\"https://www.nachi.org/sop.htm\" target=\"_blank\">https://www.nachi.org/sop.htm</a>).  There are a lot of important words in the definition above that need to be emphasized.\r\n<ul>\r\n	<li><strong>Non-invasive:</strong>  we are not allowed to tear apart a property during an inspection, we must leave the property as we find it.</li>\r\n	<li><strong>Visual examination: </strong> a home inspection is not technically exhaustive, we don\'t have special equipment and testers for every part of a property.  The inspection is primarily based upon visual observations made by the home inspector during the inspection.  It is not possible to technically inspect every appliance, system, etc. of a property during a general home inspection due to a number of factors like time restraints, concealment, cost, etc.</li>\r\n	<li><strong>Accessible areas:</strong>  many times it many not be possible to inspect an area or system because it is concealed in a wall, ceiling, floor, etc.  Accessibility also refers to systems being ready to inspect using normal operating procedures (utilities must be turned on prior to the inspection, valves open, pilot lights lit, breakers on, etc.)</li>\r\n</ul>\r\nKeep the last sentence of the definition above in mind, a home inspection can not and will not reveal every issue a property has or ever could have, it isn\'t meant to, it can\'t.  A home inspection will give you more information than you had before the inspection and that will allow you to make a better decision.  It is extremely important that the home inspector, real estate agent, and buyer or seller of a property are all on the same page when it comes to what a home inspection is and what it will provide.   Make sure you ask questions if you are unsure about what a general home inspection is, what it covers, and what it doesn\'t cover.\r\n\r\n<hr />\r\n\r\n<h2>How long does a home inspection take?</h2>\r\nThe answer to this question varies depending on many factors, mainly total square footage of the property and the age of the property being inspected. Common sense tells us the bigger a property is, the longer it is going to take to inspect. And, older properties tend to have more issues, so they also take longer to inspect. Many times the listing for a property only states total finished square footage. This number does not include unfinished basements or unfinished utility rooms and storage areas. I prefer to look at the listing for a property (if available) to get an accurate total square footage number so I can plan accordingly. Normally clients show up only for the walk through portion of the inspection. At this time we take care of a small amount of paperwork, then we go through the entire property together, talking about issues, recommendations, concerns, etc. If a client wants to be present for the entire home inspection they are welcome to do so, but most people prefer coming to the property after I have completed the general inspection. On average I am at an inspection for 4 to 6 hours, the walk through portion with the client(s) is 1 to 2 hours.\r\n\r\n<hr />\r\n\r\n<h2>Pricing for services</h2>\r\nI do not list pricing on the website for the services I offer.  The inspections I offer all vary greatly in price from one inspection to the next.  I base my inspection pricing on 3 main criteria:\r\n<ul>\r\n	<li>Total square footage of property/home</li>\r\n	<li>Age of property/home</li>\r\n	<li>Where the property/home is located</li>\r\n</ul>\r\nThe bigger the home the longer it takes to inspect, so pricing changes according to the size of the home.  Older houses tend to have more issues, so pricing changes according to the age of the home.  And the further away a house is from me the more time i have invested into the inspection, so pricing changes according to the location of the home.  Because of this I prefer to look at the listing of the property so I can give an accurate quote on the price of the inspection.\r\n\r\nYou can contact me directly or use the form below to send me a service request online.  Any messages left on my voice mail are answered within 4 hours.  You are also welcome to text me at any time.\r\n\r\n<hr />\r\n\r\n<h2>Contact for Inspection</h2>\r\n[gravityform id=\"1\" title=\"false\" description=\"true\"]','Inspections','','inherit','closed','closed','','2-revision-v1','','','2017-03-24 10:22:53','2017-03-24 15:22:53','',2,'http://redbarnmn.com/2017/03/24/2-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wprj_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_rg_form`
--

DROP TABLE IF EXISTS `wprj_rg_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_rg_form` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_trash` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`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 `wprj_rg_form`
--

LOCK TABLES `wprj_rg_form` WRITE;
/*!40000 ALTER TABLE `wprj_rg_form` DISABLE KEYS */;
INSERT INTO `wprj_rg_form` VALUES (1,'Inspection Request','2016-05-10 14:09:36',1,0),(2,'Contact','2016-05-10 15:06:52',1,0);
/*!40000 ALTER TABLE `wprj_rg_form` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_rg_form_meta`
--

DROP TABLE IF EXISTS `wprj_rg_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_rg_form_meta` (
  `form_id` mediumint(8) unsigned NOT NULL,
  `display_meta` longtext COLLATE utf8mb4_unicode_ci,
  `entries_grid_meta` longtext COLLATE utf8mb4_unicode_ci,
  `confirmations` longtext COLLATE utf8mb4_unicode_ci,
  `notifications` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_rg_form_meta`
--

LOCK TABLES `wprj_rg_form_meta` WRITE;
/*!40000 ALTER TABLE `wprj_rg_form_meta` DISABLE KEYS */;
INSERT INTO `wprj_rg_form_meta` VALUES (1,'{\"title\":\"Inspection Request\",\"description\":\"Please provide the following information about your request. We will contact you with further questions to discuss your inspection.\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"formId\":1,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"phone\",\"id\":2,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":1,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"visibility\":\"visible\",\"form_id\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":1,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"visibility\":\"visible\"},{\"type\":\"text\",\"id\":4,\"label\":\"MLS Number of Property\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"#\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":1,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"address\",\"id\":5,\"label\":\"Property Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"5.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"5.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"5.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"5.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"5.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"5.6\",\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"addressType\":\"us\",\"defaultState\":\"Minnesota\",\"defaultProvince\":\"\",\"defaultCountry\":\"United States\",\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":1,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"checkbox\",\"id\":6,\"label\":\"What Services Are You Requesting\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Home Buyer Inspection\",\"value\":\"Home Buyer Inspection\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Home Seller Inspection\",\"value\":\"Home Seller Inspection\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Home Seller Consultation\",\"value\":\"Home Seller Consultation\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Energy Consultation\",\"value\":\"Energy Consultation\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Thermal Imaging\",\"value\":\"Thermal Imaging\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Water Saving Packages\",\"value\":\"Water Saving Packages\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Energy Saving Packages\",\"value\":\"Energy Saving Packages\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Aerial Inspection\\/Photography\",\"value\":\"Aerial Inspection\\/Photography\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Home Maintenance Consultation\",\"value\":\"Home Maintenance Consultation\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Other Services\",\"value\":\"Other Services\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"6.1\",\"label\":\"Home Buyer Inspection\",\"name\":\"\"},{\"id\":\"6.2\",\"label\":\"Home Seller Inspection\",\"name\":\"\"},{\"id\":\"6.3\",\"label\":\"Home Seller Consultation\",\"name\":\"\"},{\"id\":\"6.4\",\"label\":\"Energy Consultation\",\"name\":\"\"},{\"id\":\"6.5\",\"label\":\"Thermal Imaging\",\"name\":\"\"},{\"id\":\"6.6\",\"label\":\"Water Saving Packages\",\"name\":\"\"},{\"id\":\"6.7\",\"label\":\"Energy Saving Packages\",\"name\":\"\"},{\"id\":\"6.8\",\"label\":\"Aerial Inspection\\/Photography\",\"name\":\"\"},{\"id\":\"6.9\",\"label\":\"Home Maintenance Consultation\",\"name\":\"\"},{\"id\":\"6.11\",\"label\":\"Other Services\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"above\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Check all services that apply.\",\"formId\":1,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\",\"useRichTextEditor\":false},{\"type\":\"textarea\",\"id\":7,\"label\":\"Additonal Comments or Questions\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":1,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"visibility\":\"visible\",\"displayOnly\":\"\"}],\"version\":\"2.1.3\",\"id\":1,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}',NULL,'{\"5731eba09f872\":{\"id\":\"5731eba09f872\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5731eba09f633\":{\"isActive\":true,\"id\":\"5731eba09f633\",\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"Charlie@RedBarnMN.com \",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{Email:3}\",\"fromName\":\"{Name (Prefix):1.2} {Name (Last):1.6}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}'),(2,'{\"title\":\"Contact\",\"description\":\"Please use the contact form below to contact us with any questions or comments you might have.\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"text\",\"id\":8,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"phone\",\"id\":2,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":2,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"visibility\":\"visible\",\"form_id\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":2,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"visibility\":\"visible\"},{\"type\":\"textarea\",\"id\":7,\"label\":\"Add Your Comments or Questions Here\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":2,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"}],\"version\":\"2.1.3\",\"id\":2,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}','','{\"5731eba09f872\":{\"id\":\"5731eba09f872\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5731eba09f633\":{\"isActive\":true,\"id\":\"5731eba09f633\",\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"Charlie@RedBarnMN.com \",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{Email:3}\",\"fromName\":\"{Name:8}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}');
/*!40000 ALTER TABLE `wprj_rg_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_rg_form_view`
--

DROP TABLE IF EXISTS `wprj_rg_form_view`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_rg_form_view` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `count` mediumint(8) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_rg_form_view`
--

LOCK TABLES `wprj_rg_form_view` WRITE;
/*!40000 ALTER TABLE `wprj_rg_form_view` DISABLE KEYS */;
INSERT INTO `wprj_rg_form_view` VALUES (1,1,'2016-05-10 15:15:17','65.103.39.125',1),(2,2,'2016-05-10 15:15:27','65.103.39.125',1),(3,1,'2016-05-12 04:54:17','65.103.39.125',6),(4,2,'2016-05-12 04:54:33','65.103.39.125',3),(5,1,'2016-05-13 20:48:24','66.188.179.160',3),(6,2,'2016-05-13 20:49:59','66.188.179.160',1),(7,2,'2016-05-20 17:49:29','66.188.179.153',4),(8,1,'2016-05-20 17:49:37','66.188.179.153',5),(9,1,'2016-05-23 14:04:20','65.103.39.125',1),(10,2,'2016-05-26 00:50:58','66.188.179.153',1),(11,1,'2016-05-26 00:51:22','66.188.179.153',1),(12,1,'2016-07-06 01:14:42','66.188.179.153',1),(13,2,'2016-07-06 01:15:00','66.188.179.153',1),(14,1,'2017-03-08 18:12:18','66.188.179.153',2),(15,2,'2017-03-08 18:12:33','66.188.179.153',1),(16,1,'2017-03-15 20:42:32','66.188.179.153',4),(17,2,'2017-03-15 23:35:11','66.188.179.153',1),(18,1,'2017-03-20 16:57:43','65.103.39.125',38),(19,2,'2017-03-20 16:57:55','65.103.39.125',72),(20,2,'2017-03-24 17:50:36','66.188.179.153',7),(21,1,'2017-03-24 17:50:57','66.188.179.153',4);
/*!40000 ALTER TABLE `wprj_rg_form_view` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_rg_incomplete_submissions`
--

DROP TABLE IF EXISTS `wprj_rg_incomplete_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_rg_incomplete_submissions` (
  `uuid` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source_url` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `submission` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_rg_incomplete_submissions`
--

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

--
-- Table structure for table `wprj_rg_lead`
--

DROP TABLE IF EXISTS `wprj_rg_lead`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_rg_lead` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT '0',
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `ip` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_agent` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `currency` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `payment_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transaction_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_fulfilled` tinyint(1) DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `transaction_type` tinyint(1) DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_rg_lead`
--

LOCK TABLES `wprj_rg_lead` WRITE;
/*!40000 ALTER TABLE `wprj_rg_lead` DISABLE KEYS */;
INSERT INTO `wprj_rg_lead` VALUES (1,2,NULL,'2017-03-20 20:05:56',0,0,'66.188.179.153','http://redbarnmn.com/inspections/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(2,1,NULL,'2017-03-24 17:58:12',0,0,'66.188.179.153','http://redbarnmn.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(3,2,NULL,'2017-03-24 18:00:02',0,0,'66.188.179.153','http://redbarnmn.com/services/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active');
/*!40000 ALTER TABLE `wprj_rg_lead` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_rg_lead_detail`
--

DROP TABLE IF EXISTS `wprj_rg_lead_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_rg_lead_detail` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `field_number` float NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `lead_id` (`lead_id`),
  KEY `lead_field_number` (`lead_id`,`field_number`),
  KEY `lead_field_value` (`value`(191))
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_rg_lead_detail`
--

LOCK TABLES `wprj_rg_lead_detail` WRITE;
/*!40000 ALTER TABLE `wprj_rg_lead_detail` DISABLE KEYS */;
INSERT INTO `wprj_rg_lead_detail` VALUES (1,1,2,8,'Mike Tauber'),(2,1,2,2,'(320) 260-3962'),(3,1,2,3,'pig@yahoo.com'),(4,1,2,7,'Help my pig!'),(5,2,1,1.3,'Curtis'),(6,2,1,1.6,'Bemis'),(7,2,1,2,'(132) 042-0249'),(8,2,1,3,'charliebemis@yahoo.com'),(9,2,1,5.1,'15724 90th St.'),(10,2,1,5.3,'Oak Park'),(11,2,1,5.4,'Minnesota'),(12,2,1,5.5,'56357'),(13,2,1,5.6,'United States'),(14,2,1,6.3,'Home Seller Consultation'),(15,2,1,7,'good'),(16,3,2,8,'Curtis Bemis'),(17,3,2,2,'(132) 042-0249'),(18,3,2,3,'charliebemis@yahoo.com'),(19,3,2,7,'hello');
/*!40000 ALTER TABLE `wprj_rg_lead_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_rg_lead_detail_long`
--

DROP TABLE IF EXISTS `wprj_rg_lead_detail_long`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_rg_lead_detail_long` (
  `lead_detail_id` bigint(20) unsigned NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lead_detail_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_rg_lead_detail_long`
--

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

--
-- Table structure for table `wprj_rg_lead_meta`
--

DROP TABLE IF EXISTS `wprj_rg_lead_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_rg_lead_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `lead_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `lead_id` (`lead_id`),
  KEY `form_id_meta_key` (`form_id`,`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_rg_lead_meta`
--

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

--
-- Table structure for table `wprj_rg_lead_notes`
--

DROP TABLE IF EXISTS `wprj_rg_lead_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprj_rg_lead_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci,
  `note_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lead_id` (`lead_id`),
  KEY `lead_user_key` (`lead_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprj_rg_lead_notes`
--

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

--
-- Table structure for table `wprj_term_relationships`
--

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

--
-- Dumping data for table `wprj_term_relationships`
--

LOCK TABLES `wprj_term_relationships` WRITE;
/*!40000 ALTER TABLE `wprj_term_relationships` DISABLE KEYS */;
INSERT INTO `wprj_term_relationships` VALUES (1,1,0),(14,2,0),(15,2,0),(16,2,0),(17,2,0),(76,2,0);
/*!40000 ALTER TABLE `wprj_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_term_taxonomy`
--

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

--
-- Dumping data for table `wprj_term_taxonomy`
--

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

--
-- Table structure for table `wprj_termmeta`
--

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

--
-- Dumping data for table `wprj_termmeta`
--

LOCK TABLES `wprj_termmeta` WRITE;
/*!40000 ALTER TABLE `wprj_termmeta` DISABLE KEYS */;
INSERT INTO `wprj_termmeta` VALUES (1,2,'headline',''),(2,2,'intro_text',''),(3,2,'display_title','0'),(4,2,'display_description','0'),(5,2,'doctitle',''),(6,2,'description',''),(7,2,'keywords',''),(8,2,'layout',''),(9,2,'noindex','0'),(10,2,'nofollow','0'),(11,2,'noarchive','0');
/*!40000 ALTER TABLE `wprj_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_terms`
--

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

--
-- Dumping data for table `wprj_terms`
--

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

--
-- Table structure for table `wprj_usermeta`
--

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

--
-- Dumping data for table `wprj_usermeta`
--

LOCK TABLES `wprj_usermeta` WRITE;
/*!40000 ALTER TABLE `wprj_usermeta` DISABLE KEYS */;
INSERT INTO `wprj_usermeta` VALUES (1,1,'nickname','flyingorange'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wprj_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wprj_user_level','10'),(12,1,'dismissed_wp_pointers',''),(13,1,'show_welcome_panel','1'),(15,1,'wprj_dashboard_quick_press_last_post_id','73'),(16,1,'wporg_favorites',''),(17,1,'wprj_user-settings','libraryContent=browse&hidetb=1&editor=tinymce&wplink=1'),(18,1,'wprj_user-settings-time','1490027253'),(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:15:\"title-attribute\";}'),(20,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(21,1,'nav_menu_recently_edited','2'),(22,2,'wprj_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(23,2,'wprj_user_level','10'),(24,2,'active','1'),(25,2,'session_tokens','a:1:{s:64:\"a7139c3cb464ea17c9178de86bf8caa1cd3d06ea013e8ca0c4c15d651f5d95aa\";a:4:{s:10:\"expiration\";i:1490474390;s:2:\"ip\";s:13:\"107.170.4.129\";s:2:\"ua\";s:65:\"Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0\";s:5:\"login\";i:1490301590;}}'),(26,2,'wprj_dashboard_quick_press_last_post_id','97'),(27,2,'wprj_user-settings','deleted'),(28,2,'wprj_user-settings-time','1471903340'),(31,1,'maxbuttons_review_notice','1490628753'),(32,2,'maxbuttons_review_notice','1490906392'),(33,1,'session_tokens','a:1:{s:64:\"aaae15fdadb6e3dfd9b89e62f7a85b9d760b355198eb15bdaba96668f116629f\";a:4:{s:10:\"expiration\";i:1490540850;s:2:\"ip\";s:13:\"65.103.39.125\";s:2:\"ua\";s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0\";s:5:\"login\";i:1490368050;}}');
/*!40000 ALTER TABLE `wprj_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprj_users`
--

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

--
-- Dumping data for table `wprj_users`
--

LOCK TABLES `wprj_users` WRITE;
/*!40000 ALTER TABLE `wprj_users` DISABLE KEYS */;
INSERT INTO `wprj_users` VALUES (1,'flyingorange','$P$B0BiQM46W12QK3ZOFYyJ2hK5Mn350U1','flyingorange','info@flyingorangewebdesign.com','','2016-03-24 14:32:01','',0,'flyingorange'),(2,'admin','$P$BmLzmsbIIooQAzeAEiCw0HZ2l/McZc1','admin','admin@localhost','','2010-03-01 11:06:24','',0,'admin');
/*!40000 ALTER TABLE `wprj_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2017-03-25 13:47:13
