0byt3m1n1
Path:
/
data
/
15
/
3
/
126
/
101
/
3941101
/
meta
/
4795691
/
mysql.backup
/
[
Home
]
File: 1_0007b1d_4.mysqlv115.bak.sql
-- MySQL dump 10.11 -- -- Host: mysqlv115 Database: 1_0007b1d_4 -- ------------------------------------------------------ -- Server version 5.0.91 /*!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 `crypto_files` -- DROP TABLE IF EXISTS `crypto_files`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `crypto_files` ( `fileID` int(11) unsigned NOT NULL auto_increment, `fileTitle` varchar(100) NOT NULL default '', `active` tinyint(1) NOT NULL default '1', `fileName` varchar(100) NOT NULL default '', `fileSize` double(15,0) NOT NULL default '0', `fileText` text, `priceUSD` double(10,2) NOT NULL default '0.00', `priceCoin` double(17,5) NOT NULL default '0.00000', `priceLabel` varchar(6) NOT NULL default '', `purchases` mediumint(8) NOT NULL default '0', `userFormat` enum('MANUAL','COOKIE','SESSION','IPADDRESS') NOT NULL, `expiryPeriod` varchar(15) NOT NULL default '', `lang` varchar(2) NOT NULL default '', `defCoin` varchar(5) NOT NULL default '', `defShow` tinyint(1) NOT NULL default '1', `image` varchar(100) NOT NULL default '', `imageWidth` smallint(5) NOT NULL default '0', `priceShow` tinyint(1) NOT NULL default '1', `paymentCnt` smallint(5) NOT NULL default '0', `paymentTime` datetime NOT NULL default '0000-00-00 00:00:00', `updatetime` datetime NOT NULL default '0000-00-00 00:00:00', `createtime` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`fileID`), KEY `fileTitle` (`fileTitle`), KEY `active` (`active`), KEY `fileName` (`fileName`), KEY `fileSize` (`fileSize`), KEY `priceUSD` (`priceUSD`), KEY `priceCoin` (`priceCoin`), KEY `priceLabel` (`priceLabel`), KEY `purchases` (`purchases`), KEY `userFormat` (`userFormat`), KEY `expiryPeriod` (`expiryPeriod`), KEY `lang` (`lang`), KEY `defCoin` (`defCoin`), KEY `defShow` (`defShow`), KEY `image` (`image`), KEY `imageWidth` (`imageWidth`), KEY `priceShow` (`priceShow`), KEY `paymentCnt` (`paymentCnt`), KEY `paymentTime` (`paymentTime`), KEY `updatetime` (`updatetime`), KEY `createtime` (`createtime`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `crypto_files` -- LOCK TABLES `crypto_files` WRITE; /*!40000 ALTER TABLE `crypto_files` DISABLE KEYS */; /*!40000 ALTER TABLE `crypto_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `crypto_membership` -- DROP TABLE IF EXISTS `crypto_membership`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `crypto_membership` ( `membID` int(11) unsigned NOT NULL auto_increment, `userID` bigint(20) unsigned NOT NULL default '0', `paymentID` int(11) unsigned NOT NULL default '0', `startDate` datetime NOT NULL default '0000-00-00 00:00:00', `endDate` datetime NOT NULL default '0000-00-00 00:00:00', `disabled` tinyint(1) unsigned NOT NULL default '0', `recordCreated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`membID`), KEY `userID` (`userID`), KEY `paymentID` (`paymentID`), KEY `startDate` (`startDate`), KEY `endDate` (`endDate`), KEY `disabled` (`disabled`), KEY `recordCreated` (`recordCreated`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `crypto_membership` -- LOCK TABLES `crypto_membership` WRITE; /*!40000 ALTER TABLE `crypto_membership` DISABLE KEYS */; /*!40000 ALTER TABLE `crypto_membership` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `crypto_payments` -- DROP TABLE IF EXISTS `crypto_payments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `crypto_payments` ( `paymentID` int(11) unsigned NOT NULL auto_increment, `boxID` int(11) unsigned NOT NULL default '0', `boxType` enum('paymentbox','captchabox') NOT NULL, `orderID` varchar(50) NOT NULL default '', `userID` varchar(50) NOT NULL default '', `countryID` varchar(3) NOT NULL default '', `coinLabel` varchar(6) NOT NULL default '', `amount` double(20,8) NOT NULL default '0.00000000', `amountUSD` double(20,8) NOT NULL default '0.00000000', `unrecognised` tinyint(1) unsigned NOT NULL default '0', `addr` varchar(34) NOT NULL default '', `txID` char(64) NOT NULL default '', `txDate` datetime NOT NULL default '0000-00-00 00:00:00', `txConfirmed` tinyint(1) unsigned NOT NULL default '0', `txCheckDate` datetime NOT NULL default '0000-00-00 00:00:00', `processed` tinyint(1) unsigned NOT NULL default '0', `processedDate` datetime NOT NULL default '0000-00-00 00:00:00', `recordCreated` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`paymentID`), KEY `boxID` (`boxID`), KEY `boxType` (`boxType`), KEY `userID` (`userID`), KEY `countryID` (`countryID`), KEY `orderID` (`orderID`), KEY `amount` (`amount`), KEY `amountUSD` (`amountUSD`), KEY `coinLabel` (`coinLabel`), KEY `unrecognised` (`unrecognised`), KEY `addr` (`addr`), KEY `txID` (`txID`), KEY `txDate` (`txDate`), KEY `txConfirmed` (`txConfirmed`), KEY `txCheckDate` (`txCheckDate`), KEY `processed` (`processed`), KEY `processedDate` (`processedDate`), KEY `recordCreated` (`recordCreated`), KEY `key1` (`boxID`,`orderID`), KEY `key2` (`boxID`,`orderID`,`userID`), KEY `key3` (`boxID`,`orderID`,`userID`,`txID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `crypto_payments` -- LOCK TABLES `crypto_payments` WRITE; /*!40000 ALTER TABLE `crypto_payments` DISABLE KEYS */; /*!40000 ALTER TABLE `crypto_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `crypto_products` -- DROP TABLE IF EXISTS `crypto_products`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `crypto_products` ( `productID` int(11) unsigned NOT NULL auto_increment, `productTitle` varchar(100) NOT NULL default '', `active` tinyint(1) NOT NULL default '1', `priceUSD` double(10,2) NOT NULL default '0.00', `priceCoin` double(17,5) NOT NULL default '0.00000', `priceLabel` varchar(6) NOT NULL default '', `purchases` mediumint(8) NOT NULL default '0', `expiryPeriod` varchar(15) NOT NULL default '', `lang` varchar(2) NOT NULL default '', `defCoin` varchar(5) NOT NULL default '', `defShow` tinyint(1) NOT NULL default '1', `productText` text, `finalText` text, `emailUser` tinyint(1) NOT NULL default '1', `emailUserFrom` varchar(50) NOT NULL default '', `emailUserTitle` varchar(100) NOT NULL default '', `emailUserBody` text, `emailAdmin` tinyint(1) NOT NULL default '1', `emailAdminFrom` varchar(50) NOT NULL default '', `emailAdminTo` text, `emailAdminTitle` varchar(100) NOT NULL default '', `emailAdminBody` text, `paymentCnt` smallint(5) NOT NULL default '0', `paymentTime` datetime NOT NULL default '0000-00-00 00:00:00', `updatetime` datetime NOT NULL default '0000-00-00 00:00:00', `createtime` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`productID`), KEY `productTitle` (`productTitle`), KEY `active` (`active`), KEY `priceUSD` (`priceUSD`), KEY `priceCoin` (`priceCoin`), KEY `priceLabel` (`priceLabel`), KEY `purchases` (`purchases`), KEY `expiryPeriod` (`expiryPeriod`), KEY `lang` (`lang`), KEY `defCoin` (`defCoin`), KEY `defShow` (`defShow`), KEY `emailUser` (`emailUser`), KEY `emailAdmin` (`emailAdmin`), KEY `paymentCnt` (`paymentCnt`), KEY `paymentTime` (`paymentTime`), KEY `updatetime` (`updatetime`), KEY `createtime` (`createtime`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `crypto_products` -- LOCK TABLES `crypto_products` WRITE; /*!40000 ALTER TABLE `crypto_products` DISABLE KEYS */; /*!40000 ALTER TABLE `crypto_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_activity` -- DROP TABLE IF EXISTS `wp_bp_activity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_activity` ( `id` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL, `component` varchar(75) NOT NULL, `type` varchar(75) NOT NULL, `action` text NOT NULL, `content` longtext NOT NULL, `primary_link` text NOT NULL, `item_id` bigint(20) NOT NULL, `secondary_item_id` bigint(20) default NULL, `date_recorded` datetime NOT NULL, `hide_sitewide` tinyint(1) default '0', `mptt_left` int(11) NOT NULL default '0', `mptt_right` int(11) NOT NULL default '0', `is_spam` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), KEY `date_recorded` (`date_recorded`), KEY `user_id` (`user_id`), KEY `item_id` (`item_id`), KEY `secondary_item_id` (`secondary_item_id`), KEY `component` (`component`), KEY `type` (`type`), KEY `mptt_left` (`mptt_left`), KEY `mptt_right` (`mptt_right`), KEY `hide_sitewide` (`hide_sitewide`), KEY `is_spam` (`is_spam`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_activity` -- LOCK TABLES `wp_bp_activity` WRITE; /*!40000 ALTER TABLE `wp_bp_activity` DISABLE KEYS */; INSERT INTO `wp_bp_activity` VALUES (3,1,'members','last_activity','','','',0,NULL,'2015-10-07 18:15:42',0,0,0,0),(4,1,'bbpress','bbp_topic_create','<a href=\"http://thebeloitpod.com/wordpress1/members-3/ReeseWood/\" rel=\"nofollow\">ReeseWood</a> started the topic <a href=\"http://thebeloitpod.com/wordpress1/index.php/forums/topic/i-will-be-posting-some-general-guidelines-soon/\">I will be posting some general guidelines soon!</a> in the forum <a href=\"http://thebeloitpod.com/wordpress1/index.php/forums/forum/barternegotiatetrade/\">Barter/Negotiate/trade</a>','Until I can get caught up on the website I would like everyone to continue using this forum as a respectable place to do barter/negotiation/trade related business.','http://thebeloitpod.com/wordpress1/index.php/forums/topic/i-will-be-posting-some-general-guidelines-soon/',383,229,'2015-08-11 02:23:21',0,0,0,0),(5,1,'bbpress','bbp_topic_create','<a href=\"http://thebeloitpod.com/wordpress1/members-3/ReeseWood/\" rel=\"nofollow\">ReeseWood</a> started the topic <a href=\"http://thebeloitpod.com/wordpress1/index.php/forums/topic/links/\">Links</a> in the forum <a href=\"http://thebeloitpod.com/wordpress1/index.php/forums/forum/skills-and-self-sufficiency-topics/diy-podcasting/\">DIY Podcasting</a>','<a href=\"https://www.freeconference.com/\">freeconference.com- Host for free conference calls, very simple.</a>\n<a href=\"http://theaudacitytopodcast.com/\">theaudacitytopodcast.com- The #1 web location to keep current on podcasting</a>\n<a href=\"http://www.google.com/+/learnmore/hangouts/onair.html\">Google Hangouts</a>\n<a href=\"http://www.thesurvivalpodcast.com/\">thesurvivalpodcast.com</a>\n<a href=\"http://lionelmedia.com/\">lionelmedia.com</a><a href=\"http://www.libsyn.com/\">www.libsyn.com</a>','http://thebeloitpod.com/wordpress1/index.php/forums/topic/links/',426,424,'2015-08-17 19:16:55',0,0,0,0),(6,1,'profile','new_avatar','<a href=\"http://thebeloitpod.com/wordpress1/members-3/ReeseWood/\" title=\"ReeseWood\">ReeseWood</a> changed their profile picture','','http://thebeloitpod.com/wordpress1/members-3/ReeseWood/',0,0,'2015-08-17 19:22:15',0,0,0,0); /*!40000 ALTER TABLE `wp_bp_activity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_activity_meta` -- DROP TABLE IF EXISTS `wp_bp_activity_meta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_activity_meta` ( `id` bigint(20) NOT NULL auto_increment, `activity_id` bigint(20) NOT NULL, `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `activity_id` (`activity_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_activity_meta` -- LOCK TABLES `wp_bp_activity_meta` WRITE; /*!40000 ALTER TABLE `wp_bp_activity_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_activity_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_friends` -- DROP TABLE IF EXISTS `wp_bp_friends`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_friends` ( `id` bigint(20) NOT NULL auto_increment, `initiator_user_id` bigint(20) NOT NULL, `friend_user_id` bigint(20) NOT NULL, `is_confirmed` tinyint(1) default '0', `is_limited` tinyint(1) default '0', `date_created` datetime NOT NULL, PRIMARY KEY (`id`), KEY `initiator_user_id` (`initiator_user_id`), KEY `friend_user_id` (`friend_user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_friends` -- LOCK TABLES `wp_bp_friends` WRITE; /*!40000 ALTER TABLE `wp_bp_friends` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_friends` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_groups` -- DROP TABLE IF EXISTS `wp_bp_groups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_groups` ( `id` bigint(20) NOT NULL auto_increment, `creator_id` bigint(20) NOT NULL, `name` varchar(100) NOT NULL, `slug` varchar(200) NOT NULL, `description` longtext NOT NULL, `status` varchar(10) NOT NULL default 'public', `enable_forum` tinyint(1) NOT NULL default '1', `date_created` datetime NOT NULL, PRIMARY KEY (`id`), KEY `creator_id` (`creator_id`), KEY `status` (`status`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_groups` -- LOCK TABLES `wp_bp_groups` WRITE; /*!40000 ALTER TABLE `wp_bp_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_groups_groupmeta` -- DROP TABLE IF EXISTS `wp_bp_groups_groupmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_groups_groupmeta` ( `id` bigint(20) NOT NULL auto_increment, `group_id` bigint(20) NOT NULL, `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `group_id` (`group_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_groups_groupmeta` -- LOCK TABLES `wp_bp_groups_groupmeta` WRITE; /*!40000 ALTER TABLE `wp_bp_groups_groupmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_groups_groupmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_groups_members` -- DROP TABLE IF EXISTS `wp_bp_groups_members`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_groups_members` ( `id` bigint(20) NOT NULL auto_increment, `group_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `inviter_id` bigint(20) NOT NULL, `is_admin` tinyint(1) NOT NULL default '0', `is_mod` tinyint(1) NOT NULL default '0', `user_title` varchar(100) NOT NULL, `date_modified` datetime NOT NULL, `comments` longtext NOT NULL, `is_confirmed` tinyint(1) NOT NULL default '0', `is_banned` tinyint(1) NOT NULL default '0', `invite_sent` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), KEY `group_id` (`group_id`), KEY `is_admin` (`is_admin`), KEY `is_mod` (`is_mod`), KEY `user_id` (`user_id`), KEY `inviter_id` (`inviter_id`), KEY `is_confirmed` (`is_confirmed`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_groups_members` -- LOCK TABLES `wp_bp_groups_members` WRITE; /*!40000 ALTER TABLE `wp_bp_groups_members` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_groups_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_messages_messages` -- DROP TABLE IF EXISTS `wp_bp_messages_messages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_messages_messages` ( `id` bigint(20) NOT NULL auto_increment, `thread_id` bigint(20) NOT NULL, `sender_id` bigint(20) NOT NULL, `subject` varchar(200) NOT NULL, `message` longtext NOT NULL, `date_sent` datetime NOT NULL, PRIMARY KEY (`id`), KEY `sender_id` (`sender_id`), KEY `thread_id` (`thread_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_messages_messages` -- LOCK TABLES `wp_bp_messages_messages` WRITE; /*!40000 ALTER TABLE `wp_bp_messages_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_messages_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_messages_meta` -- DROP TABLE IF EXISTS `wp_bp_messages_meta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_messages_meta` ( `id` bigint(20) NOT NULL auto_increment, `message_id` bigint(20) NOT NULL, `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `message_id` (`message_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_messages_meta` -- LOCK TABLES `wp_bp_messages_meta` WRITE; /*!40000 ALTER TABLE `wp_bp_messages_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_messages_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_messages_notices` -- DROP TABLE IF EXISTS `wp_bp_messages_notices`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_messages_notices` ( `id` bigint(20) NOT NULL auto_increment, `subject` varchar(200) NOT NULL, `message` longtext NOT NULL, `date_sent` datetime NOT NULL, `is_active` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), KEY `is_active` (`is_active`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_messages_notices` -- LOCK TABLES `wp_bp_messages_notices` WRITE; /*!40000 ALTER TABLE `wp_bp_messages_notices` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_messages_notices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_messages_recipients` -- DROP TABLE IF EXISTS `wp_bp_messages_recipients`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_messages_recipients` ( `id` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL, `thread_id` bigint(20) NOT NULL, `unread_count` int(10) NOT NULL default '0', `sender_only` tinyint(1) NOT NULL default '0', `is_deleted` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `thread_id` (`thread_id`), KEY `is_deleted` (`is_deleted`), KEY `sender_only` (`sender_only`), KEY `unread_count` (`unread_count`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_messages_recipients` -- LOCK TABLES `wp_bp_messages_recipients` WRITE; /*!40000 ALTER TABLE `wp_bp_messages_recipients` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_messages_recipients` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_notifications` -- DROP TABLE IF EXISTS `wp_bp_notifications`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_notifications` ( `id` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL, `item_id` bigint(20) NOT NULL, `secondary_item_id` bigint(20) default NULL, `component_name` varchar(75) NOT NULL, `component_action` varchar(75) NOT NULL, `date_notified` datetime NOT NULL, `is_new` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), KEY `item_id` (`item_id`), KEY `secondary_item_id` (`secondary_item_id`), KEY `user_id` (`user_id`), KEY `is_new` (`is_new`), KEY `component_name` (`component_name`), KEY `component_action` (`component_action`), KEY `useritem` (`user_id`,`is_new`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_notifications` -- LOCK TABLES `wp_bp_notifications` WRITE; /*!40000 ALTER TABLE `wp_bp_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_notifications_meta` -- DROP TABLE IF EXISTS `wp_bp_notifications_meta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_notifications_meta` ( `id` bigint(20) NOT NULL auto_increment, `notification_id` bigint(20) NOT NULL, `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `notification_id` (`notification_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_notifications_meta` -- LOCK TABLES `wp_bp_notifications_meta` WRITE; /*!40000 ALTER TABLE `wp_bp_notifications_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_notifications_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_xprofile_data` -- DROP TABLE IF EXISTS `wp_bp_xprofile_data`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_xprofile_data` ( `id` bigint(20) unsigned NOT NULL auto_increment, `field_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `value` longtext NOT NULL, `last_updated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `field_id` (`field_id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_xprofile_data` -- LOCK TABLES `wp_bp_xprofile_data` WRITE; /*!40000 ALTER TABLE `wp_bp_xprofile_data` DISABLE KEYS */; INSERT INTO `wp_bp_xprofile_data` VALUES (1,1,1,'ReeseWood','2015-08-17 19:22:58'); /*!40000 ALTER TABLE `wp_bp_xprofile_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_xprofile_fields` -- DROP TABLE IF EXISTS `wp_bp_xprofile_fields`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_xprofile_fields` ( `id` bigint(20) unsigned NOT NULL auto_increment, `group_id` bigint(20) unsigned NOT NULL, `parent_id` bigint(20) unsigned NOT NULL, `type` varchar(150) NOT NULL, `name` varchar(150) NOT NULL, `description` longtext NOT NULL, `is_required` tinyint(1) NOT NULL default '0', `is_default_option` tinyint(1) NOT NULL default '0', `field_order` bigint(20) NOT NULL default '0', `option_order` bigint(20) NOT NULL default '0', `order_by` varchar(15) NOT NULL default '', `can_delete` tinyint(1) NOT NULL default '1', PRIMARY KEY (`id`), KEY `group_id` (`group_id`), KEY `parent_id` (`parent_id`), KEY `field_order` (`field_order`), KEY `can_delete` (`can_delete`), KEY `is_required` (`is_required`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_xprofile_fields` -- LOCK TABLES `wp_bp_xprofile_fields` WRITE; /*!40000 ALTER TABLE `wp_bp_xprofile_fields` DISABLE KEYS */; INSERT INTO `wp_bp_xprofile_fields` VALUES (1,1,0,'textbox','Name','',1,0,0,0,'',0); /*!40000 ALTER TABLE `wp_bp_xprofile_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_xprofile_groups` -- DROP TABLE IF EXISTS `wp_bp_xprofile_groups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_xprofile_groups` ( `id` bigint(20) unsigned NOT NULL auto_increment, `name` varchar(150) NOT NULL, `description` mediumtext NOT NULL, `group_order` bigint(20) NOT NULL default '0', `can_delete` tinyint(1) NOT NULL, PRIMARY KEY (`id`), KEY `can_delete` (`can_delete`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_xprofile_groups` -- LOCK TABLES `wp_bp_xprofile_groups` WRITE; /*!40000 ALTER TABLE `wp_bp_xprofile_groups` DISABLE KEYS */; INSERT INTO `wp_bp_xprofile_groups` VALUES (1,'Base','',0,0); /*!40000 ALTER TABLE `wp_bp_xprofile_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_xprofile_meta` -- DROP TABLE IF EXISTS `wp_bp_xprofile_meta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bp_xprofile_meta` ( `id` bigint(20) NOT NULL auto_increment, `object_id` bigint(20) NOT NULL, `object_type` varchar(150) NOT NULL, `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `object_id` (`object_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bp_xprofile_meta` -- LOCK TABLES `wp_bp_xprofile_meta` WRITE; /*!40000 ALTER TABLE `wp_bp_xprofile_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_xprofile_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_album` -- DROP TABLE IF EXISTS `wp_bwg_album`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_album` ( `id` bigint(20) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `description` mediumtext NOT NULL, `preview_image` mediumtext NOT NULL, `random_preview_image` mediumtext NOT NULL, `order` bigint(20) NOT NULL, `author` bigint(20) NOT NULL, `published` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_album` -- LOCK TABLES `wp_bwg_album` WRITE; /*!40000 ALTER TABLE `wp_bwg_album` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bwg_album` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_album_gallery` -- DROP TABLE IF EXISTS `wp_bwg_album_gallery`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_album_gallery` ( `id` bigint(20) NOT NULL auto_increment, `album_id` bigint(20) NOT NULL, `is_album` tinyint(1) NOT NULL, `alb_gal_id` bigint(20) NOT NULL, `order` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_album_gallery` -- LOCK TABLES `wp_bwg_album_gallery` WRITE; /*!40000 ALTER TABLE `wp_bwg_album_gallery` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bwg_album_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_gallery` -- DROP TABLE IF EXISTS `wp_bwg_gallery`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_gallery` ( `id` bigint(20) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `description` mediumtext NOT NULL, `page_link` mediumtext NOT NULL, `preview_image` mediumtext NOT NULL, `random_preview_image` mediumtext NOT NULL, `order` bigint(20) NOT NULL, `author` bigint(20) NOT NULL, `published` tinyint(1) NOT NULL, `gallery_type` varchar(32) NOT NULL, `gallery_source` varchar(64) NOT NULL, `autogallery_image_number` int(4) NOT NULL, `update_flag` varchar(32) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_gallery` -- LOCK TABLES `wp_bwg_gallery` WRITE; /*!40000 ALTER TABLE `wp_bwg_gallery` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bwg_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_image` -- DROP TABLE IF EXISTS `wp_bwg_image`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_image` ( `id` bigint(20) NOT NULL auto_increment, `gallery_id` bigint(20) NOT NULL, `slug` longtext NOT NULL, `filename` varchar(255) NOT NULL, `image_url` mediumtext NOT NULL, `thumb_url` mediumtext NOT NULL, `description` mediumtext NOT NULL, `alt` mediumtext NOT NULL, `date` varchar(128) NOT NULL, `size` varchar(128) NOT NULL, `filetype` varchar(128) NOT NULL, `resolution` varchar(128) NOT NULL, `author` bigint(20) NOT NULL, `order` bigint(20) NOT NULL, `published` tinyint(1) NOT NULL, `comment_count` bigint(20) NOT NULL, `avg_rating` float NOT NULL, `rate_count` bigint(20) NOT NULL, `hit_count` bigint(20) NOT NULL, `redirect_url` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_image` -- LOCK TABLES `wp_bwg_image` WRITE; /*!40000 ALTER TABLE `wp_bwg_image` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bwg_image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_image_comment` -- DROP TABLE IF EXISTS `wp_bwg_image_comment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_image_comment` ( `id` bigint(20) NOT NULL auto_increment, `image_id` bigint(20) NOT NULL, `name` varchar(255) NOT NULL, `date` varchar(64) NOT NULL, `comment` mediumtext NOT NULL, `url` mediumtext NOT NULL, `mail` mediumtext NOT NULL, `published` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_image_comment` -- LOCK TABLES `wp_bwg_image_comment` WRITE; /*!40000 ALTER TABLE `wp_bwg_image_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bwg_image_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_image_rate` -- DROP TABLE IF EXISTS `wp_bwg_image_rate`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_image_rate` ( `id` bigint(20) NOT NULL auto_increment, `image_id` bigint(20) NOT NULL, `rate` float NOT NULL, `ip` varchar(64) NOT NULL, `date` varchar(64) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_image_rate` -- LOCK TABLES `wp_bwg_image_rate` WRITE; /*!40000 ALTER TABLE `wp_bwg_image_rate` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bwg_image_rate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_image_tag` -- DROP TABLE IF EXISTS `wp_bwg_image_tag`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_image_tag` ( `id` bigint(20) NOT NULL auto_increment, `tag_id` bigint(20) NOT NULL, `image_id` bigint(20) NOT NULL, `gallery_id` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_image_tag` -- LOCK TABLES `wp_bwg_image_tag` WRITE; /*!40000 ALTER TABLE `wp_bwg_image_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bwg_image_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_option` -- DROP TABLE IF EXISTS `wp_bwg_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_option` ( `id` bigint(20) NOT NULL auto_increment, `images_directory` mediumtext NOT NULL, `masonry` varchar(255) NOT NULL, `mosaic` varchar(255) NOT NULL, `resizable_mosaic` tinyint(1) NOT NULL, `mosaic_total_width` int(4) NOT NULL, `image_column_number` int(4) NOT NULL, `images_per_page` int(4) NOT NULL, `thumb_width` int(4) NOT NULL, `thumb_height` int(4) NOT NULL, `upload_thumb_width` int(4) NOT NULL, `upload_thumb_height` int(4) NOT NULL, `image_enable_page` tinyint(1) NOT NULL, `image_title_show_hover` varchar(20) NOT NULL, `album_column_number` int(4) NOT NULL, `albums_per_page` int(4) NOT NULL, `album_title_show_hover` varchar(8) NOT NULL, `album_thumb_width` int(4) NOT NULL, `album_thumb_height` int(4) NOT NULL, `album_enable_page` tinyint(1) NOT NULL, `extended_album_height` int(4) NOT NULL, `extended_album_description_enable` tinyint(1) NOT NULL, `image_browser_width` int(4) NOT NULL, `image_browser_title_enable` tinyint(1) NOT NULL, `image_browser_description_enable` tinyint(1) NOT NULL, `blog_style_width` int(4) NOT NULL, `blog_style_title_enable` tinyint(1) NOT NULL, `blog_style_images_per_page` int(4) NOT NULL, `blog_style_enable_page` tinyint(1) NOT NULL, `slideshow_type` varchar(16) NOT NULL, `slideshow_interval` int(4) NOT NULL, `slideshow_width` int(4) NOT NULL, `slideshow_height` int(4) NOT NULL, `slideshow_enable_autoplay` tinyint(1) NOT NULL, `slideshow_enable_shuffle` tinyint(1) NOT NULL, `slideshow_enable_ctrl` tinyint(1) NOT NULL, `slideshow_enable_filmstrip` tinyint(1) NOT NULL, `slideshow_filmstrip_height` int(4) NOT NULL, `slideshow_enable_title` tinyint(1) NOT NULL, `slideshow_title_position` varchar(16) NOT NULL, `slideshow_enable_description` tinyint(1) NOT NULL, `slideshow_description_position` varchar(16) NOT NULL, `slideshow_enable_music` tinyint(1) NOT NULL, `slideshow_audio_url` varchar(255) NOT NULL, `popup_width` int(4) NOT NULL, `popup_height` int(4) NOT NULL, `popup_type` varchar(16) NOT NULL, `popup_interval` int(4) NOT NULL, `popup_enable_filmstrip` tinyint(1) NOT NULL, `popup_filmstrip_height` int(4) NOT NULL, `popup_enable_ctrl_btn` tinyint(1) NOT NULL, `popup_enable_fullscreen` tinyint(1) NOT NULL, `popup_enable_info` tinyint(1) NOT NULL, `popup_info_always_show` tinyint(1) NOT NULL, `popup_enable_rate` tinyint(1) NOT NULL, `popup_enable_comment` tinyint(1) NOT NULL, `popup_enable_email` tinyint(1) NOT NULL, `popup_enable_captcha` tinyint(1) NOT NULL, `popup_enable_download` tinyint(1) NOT NULL, `popup_enable_fullsize_image` tinyint(1) NOT NULL, `popup_enable_facebook` tinyint(1) NOT NULL, `popup_enable_twitter` tinyint(1) NOT NULL, `popup_enable_google` tinyint(1) NOT NULL, `watermark_type` varchar(8) NOT NULL, `watermark_position` varchar(16) NOT NULL, `watermark_width` int(4) NOT NULL, `watermark_height` int(4) NOT NULL, `watermark_url` mediumtext NOT NULL, `watermark_text` mediumtext NOT NULL, `watermark_link` mediumtext NOT NULL, `watermark_font_size` int(4) NOT NULL, `watermark_font` varchar(16) NOT NULL, `watermark_color` varchar(8) NOT NULL, `watermark_opacity` int(4) NOT NULL, `built_in_watermark_type` varchar(16) NOT NULL, `built_in_watermark_position` varchar(16) NOT NULL, `built_in_watermark_size` int(4) NOT NULL, `built_in_watermark_url` mediumtext NOT NULL, `built_in_watermark_text` mediumtext NOT NULL, `built_in_watermark_font_size` int(4) NOT NULL, `built_in_watermark_font` varchar(16) NOT NULL, `built_in_watermark_color` varchar(8) NOT NULL, `built_in_watermark_opacity` int(4) NOT NULL, `image_right_click` tinyint(1) NOT NULL, `popup_fullscreen` tinyint(1) NOT NULL, `gallery_role` tinyint(1) NOT NULL, `album_role` tinyint(1) NOT NULL, `image_role` tinyint(1) NOT NULL, `popup_autoplay` tinyint(1) NOT NULL, `album_view_type` varchar(16) NOT NULL, `popup_enable_pinterest` tinyint(1) NOT NULL, `popup_enable_tumblr` tinyint(1) NOT NULL, `show_search_box` tinyint(1) NOT NULL, `search_box_width` int(4) NOT NULL, `preload_images` tinyint(1) NOT NULL, `preload_images_count` int(4) NOT NULL, `thumb_click_action` varchar(16) NOT NULL, `thumb_link_target` tinyint(1) NOT NULL, `comment_moderation` tinyint(1) NOT NULL, `popup_hit_counter` tinyint(1) NOT NULL, `enable_ML_import` tinyint(1) NOT NULL, `showthumbs_name` tinyint(1) NOT NULL, `show_album_name` tinyint(1) NOT NULL, `show_image_counts` tinyint(1) NOT NULL, `upload_img_width` int(4) NOT NULL, `upload_img_height` int(4) NOT NULL, `play_icon` tinyint(1) NOT NULL, `show_masonry_thumb_description` tinyint(1) NOT NULL, `slideshow_title_full_width` tinyint(1) NOT NULL, `popup_info_full_width` tinyint(1) NOT NULL, `show_sort_images` tinyint(1) NOT NULL, `autoupdate_interval` int(4) NOT NULL, `instagram_client_id` varchar(40) NOT NULL, `description_tb` tinyint(1) NOT NULL, `enable_seo` tinyint(1) NOT NULL, `autohide_lightbox_navigation` tinyint(1) NOT NULL, `autohide_slideshow_navigation` tinyint(1) NOT NULL, `read_metadata` tinyint(1) NOT NULL, `enable_loop` tinyint(1) NOT NULL, `enable_addthis` tinyint(1) NOT NULL, `addthis_profile_id` varchar(66) NOT NULL, `carousel_interval` int(4) NOT NULL, `carousel_width` int(4) NOT NULL, `carousel_height` int(4) NOT NULL, `carousel_image_column_number` int(4) NOT NULL, `carousel_image_par` varchar(32) NOT NULL, `carousel_enable_title` tinyint(1) NOT NULL, `carousel_enable_autoplay` tinyint(1) NOT NULL, `carousel_r_width` int(4) NOT NULL, `carousel_fit_containerWidth` tinyint(1) NOT NULL, `carousel_prev_next_butt` tinyint(1) NOT NULL, `carousel_play_pause_butt` tinyint(1) NOT NULL, `permissions` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_option` -- LOCK TABLES `wp_bwg_option` WRITE; /*!40000 ALTER TABLE `wp_bwg_option` DISABLE KEYS */; INSERT INTO `wp_bwg_option` VALUES (1,'wp-content/uploads','vertical','vertical',0,100,5,30,180,90,300,300,1,'none',5,30,'hover',120,90,1,150,1,800,1,1,800,1,5,1,'fade',5,800,500,0,0,1,1,90,0,'top-right',0,'bottom-right',0,'',800,500,'fade',5,1,70,1,1,1,0,0,1,0,0,0,0,1,1,1,'none','bottom-left',90,90,'http://thebeloitpod.com/wordpress1/wp-content/plugins/photo-gallery/images/watermark.png','web-dorado.com','https://web-dorado.com',20,'arial','FFFFFF',30,'none','middle-center',15,'http://thebeloitpod.com/wordpress1/wp-content/plugins/photo-gallery/images/watermark.png','web-dorado.com',20,'arial','FFFFFF',30,0,0,0,0,0,0,'thumbnail',0,0,0,180,0,10,'open_lightbox',1,0,0,0,0,0,0,1200,1200,1,0,0,0,0,30,'',0,1,1,1,1,1,0,'',5,300,300,5,'0.75',0,0,800,1,1,1,'manage_options'); /*!40000 ALTER TABLE `wp_bwg_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_shortcode` -- DROP TABLE IF EXISTS `wp_bwg_shortcode`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_shortcode` ( `id` bigint(20) NOT NULL, `tagtext` mediumtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_shortcode` -- LOCK TABLES `wp_bwg_shortcode` WRITE; /*!40000 ALTER TABLE `wp_bwg_shortcode` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bwg_shortcode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bwg_theme` -- DROP TABLE IF EXISTS `wp_bwg_theme`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_bwg_theme` ( `id` bigint(20) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `thumb_margin` int(4) NOT NULL, `thumb_padding` int(4) NOT NULL, `thumb_border_radius` varchar(32) NOT NULL, `thumb_border_width` int(4) NOT NULL, `thumb_border_style` varchar(16) NOT NULL, `thumb_border_color` varchar(8) NOT NULL, `thumb_bg_color` varchar(8) NOT NULL, `thumbs_bg_color` varchar(8) NOT NULL, `thumb_bg_transparent` int(4) NOT NULL, `thumb_box_shadow` varchar(32) NOT NULL, `thumb_transparent` int(4) NOT NULL, `thumb_align` varchar(8) NOT NULL, `thumb_hover_effect` varchar(128) NOT NULL, `thumb_hover_effect_value` varchar(128) NOT NULL, `thumb_transition` tinyint(1) NOT NULL, `thumb_title_font_color` varchar(8) NOT NULL, `thumb_title_font_style` varchar(16) NOT NULL, `thumb_title_pos` varchar(8) NOT NULL, `thumb_title_font_size` int(4) NOT NULL, `thumb_title_font_weight` varchar(8) NOT NULL, `thumb_title_margin` varchar(32) NOT NULL, `thumb_title_shadow` varchar(32) NOT NULL, `page_nav_position` varchar(8) NOT NULL, `page_nav_align` varchar(8) NOT NULL, `page_nav_number` tinyint(1) NOT NULL, `page_nav_font_size` int(4) NOT NULL, `page_nav_font_style` varchar(32) NOT NULL, `page_nav_font_color` varchar(8) NOT NULL, `page_nav_font_weight` varchar(8) NOT NULL, `page_nav_border_width` int(4) NOT NULL, `page_nav_border_style` varchar(16) NOT NULL, `page_nav_border_color` varchar(8) NOT NULL, `page_nav_border_radius` varchar(32) NOT NULL, `page_nav_margin` varchar(32) NOT NULL, `page_nav_padding` varchar(32) NOT NULL, `page_nav_button_bg_color` varchar(8) NOT NULL, `page_nav_button_bg_transparent` int(4) NOT NULL, `page_nav_box_shadow` varchar(32) NOT NULL, `page_nav_button_transition` tinyint(1) NOT NULL, `page_nav_button_text` tinyint(1) NOT NULL, `lightbox_overlay_bg_color` varchar(8) NOT NULL, `lightbox_overlay_bg_transparent` int(4) NOT NULL, `lightbox_bg_color` varchar(8) NOT NULL, `lightbox_ctrl_btn_pos` varchar(8) NOT NULL, `lightbox_ctrl_btn_align` varchar(8) NOT NULL, `lightbox_ctrl_btn_height` int(4) NOT NULL, `lightbox_ctrl_btn_margin_top` int(4) NOT NULL, `lightbox_ctrl_btn_margin_left` int(4) NOT NULL, `lightbox_ctrl_btn_transparent` int(4) NOT NULL, `lightbox_ctrl_btn_color` varchar(8) NOT NULL, `lightbox_toggle_btn_height` int(4) NOT NULL, `lightbox_toggle_btn_width` int(4) NOT NULL, `lightbox_ctrl_cont_bg_color` varchar(8) NOT NULL, `lightbox_ctrl_cont_transparent` int(4) NOT NULL, `lightbox_ctrl_cont_border_radius` int(4) NOT NULL, `lightbox_close_btn_transparent` int(4) NOT NULL, `lightbox_close_btn_bg_color` varchar(8) NOT NULL, `lightbox_close_btn_border_width` int(4) NOT NULL, `lightbox_close_btn_border_radius` varchar(32) NOT NULL, `lightbox_close_btn_border_style` varchar(16) NOT NULL, `lightbox_close_btn_border_color` varchar(8) NOT NULL, `lightbox_close_btn_box_shadow` varchar(32) NOT NULL, `lightbox_close_btn_color` varchar(8) NOT NULL, `lightbox_close_btn_size` int(4) NOT NULL, `lightbox_close_btn_width` int(4) NOT NULL, `lightbox_close_btn_height` int(4) NOT NULL, `lightbox_close_btn_top` varchar(8) NOT NULL, `lightbox_close_btn_right` varchar(8) NOT NULL, `lightbox_close_btn_full_color` varchar(8) NOT NULL, `lightbox_rl_btn_bg_color` varchar(8) NOT NULL, `lightbox_rl_btn_transparent` int(4) NOT NULL, `lightbox_rl_btn_border_radius` varchar(32) NOT NULL, `lightbox_rl_btn_border_width` int(4) NOT NULL, `lightbox_rl_btn_border_style` varchar(32) NOT NULL, `lightbox_rl_btn_border_color` varchar(8) NOT NULL, `lightbox_rl_btn_box_shadow` varchar(32) NOT NULL, `lightbox_rl_btn_color` varchar(8) NOT NULL, `lightbox_rl_btn_height` int(4) NOT NULL, `lightbox_rl_btn_width` int(4) NOT NULL, `lightbox_rl_btn_size` int(4) NOT NULL, `lightbox_close_rl_btn_hover_color` varchar(8) NOT NULL, `lightbox_comment_pos` varchar(8) NOT NULL, `lightbox_comment_width` int(4) NOT NULL, `lightbox_comment_bg_color` varchar(8) NOT NULL, `lightbox_comment_font_color` varchar(8) NOT NULL, `lightbox_comment_font_style` varchar(16) NOT NULL, `lightbox_comment_font_size` int(4) NOT NULL, `lightbox_comment_button_bg_color` varchar(8) NOT NULL, `lightbox_comment_button_border_color` varchar(8) NOT NULL, `lightbox_comment_button_border_width` int(4) NOT NULL, `lightbox_comment_button_border_style` varchar(16) NOT NULL, `lightbox_comment_button_border_radius` varchar(32) NOT NULL, `lightbox_comment_button_padding` varchar(32) NOT NULL, `lightbox_comment_input_bg_color` varchar(8) NOT NULL, `lightbox_comment_input_border_color` varchar(8) NOT NULL, `lightbox_comment_input_border_width` int(4) NOT NULL, `lightbox_comment_input_border_style` varchar(16) NOT NULL, `lightbox_comment_input_border_radius` varchar(32) NOT NULL, `lightbox_comment_input_padding` varchar(32) NOT NULL, `lightbox_comment_separator_width` int(4) NOT NULL, `lightbox_comment_separator_style` varchar(16) NOT NULL, `lightbox_comment_separator_color` varchar(8) NOT NULL, `lightbox_comment_author_font_size` int(4) NOT NULL, `lightbox_comment_date_font_size` int(4) NOT NULL, `lightbox_comment_body_font_size` int(4) NOT NULL, `lightbox_comment_share_button_color` varchar(8) NOT NULL, `lightbox_filmstrip_pos` varchar(8) NOT NULL, `lightbox_filmstrip_rl_bg_color` varchar(8) NOT NULL, `lightbox_filmstrip_rl_btn_size` int(4) NOT NULL, `lightbox_filmstrip_rl_btn_color` varchar(8) NOT NULL, `lightbox_filmstrip_thumb_margin` varchar(32) NOT NULL, `lightbox_filmstrip_thumb_border_width` int(4) NOT NULL, `lightbox_filmstrip_thumb_border_style` varchar(16) NOT NULL, `lightbox_filmstrip_thumb_border_color` varchar(8) NOT NULL, `lightbox_filmstrip_thumb_border_radius` varchar(32) NOT NULL, `lightbox_filmstrip_thumb_deactive_transparent` int(4) NOT NULL, `lightbox_filmstrip_thumb_active_border_width` int(4) NOT NULL, `lightbox_filmstrip_thumb_active_border_color` varchar(8) NOT NULL, `lightbox_rl_btn_style` varchar(16) NOT NULL, `album_compact_back_font_color` varchar(8) NOT NULL, `album_compact_back_font_style` varchar(16) NOT NULL, `album_compact_back_font_size` int(4) NOT NULL, `album_compact_back_font_weight` varchar(8) NOT NULL, `album_compact_back_padding` varchar(32) NOT NULL, `album_compact_title_font_color` varchar(8) NOT NULL, `album_compact_title_font_style` varchar(16) NOT NULL, `album_compact_thumb_title_pos` varchar(8) NOT NULL, `album_compact_title_font_size` int(4) NOT NULL, `album_compact_title_font_weight` varchar(8) NOT NULL, `album_compact_title_margin` varchar(32) NOT NULL, `album_compact_title_shadow` varchar(32) NOT NULL, `album_compact_thumb_margin` int(4) NOT NULL, `album_compact_thumb_padding` int(4) NOT NULL, `album_compact_thumb_border_radius` varchar(32) NOT NULL, `album_compact_thumb_border_width` int(4) NOT NULL, `album_compact_thumb_border_style` varchar(8) NOT NULL, `album_compact_thumb_border_color` varchar(8) NOT NULL, `album_compact_thumb_bg_color` varchar(8) NOT NULL, `album_compact_thumbs_bg_color` varchar(8) NOT NULL, `album_compact_thumb_bg_transparent` int(4) NOT NULL, `album_compact_thumb_box_shadow` varchar(32) NOT NULL, `album_compact_thumb_transparent` int(4) NOT NULL, `album_compact_thumb_align` varchar(8) NOT NULL, `album_compact_thumb_hover_effect` varchar(64) NOT NULL, `album_compact_thumb_hover_effect_value` varchar(64) NOT NULL, `album_compact_thumb_transition` tinyint(1) NOT NULL, `album_extended_thumb_margin` int(4) NOT NULL, `album_extended_thumb_padding` int(4) NOT NULL, `album_extended_thumb_border_radius` varchar(32) NOT NULL, `album_extended_thumb_border_width` int(4) NOT NULL, `album_extended_thumb_border_style` varchar(8) NOT NULL, `album_extended_thumb_border_color` varchar(8) NOT NULL, `album_extended_thumb_bg_color` varchar(8) NOT NULL, `album_extended_thumbs_bg_color` varchar(8) NOT NULL, `album_extended_thumb_bg_transparent` int(4) NOT NULL, `album_extended_thumb_box_shadow` varchar(32) NOT NULL, `album_extended_thumb_transparent` int(4) NOT NULL, `album_extended_thumb_align` varchar(8) NOT NULL, `album_extended_thumb_hover_effect` varchar(64) NOT NULL, `album_extended_thumb_hover_effect_value` varchar(64) NOT NULL, `album_extended_thumb_transition` tinyint(1) NOT NULL, `album_extended_back_font_color` varchar(8) NOT NULL, `album_extended_back_font_style` varchar(16) NOT NULL, `album_extended_back_font_size` int(4) NOT NULL, `album_extended_back_font_weight` varchar(8) NOT NULL, `album_extended_back_padding` varchar(32) NOT NULL, `album_extended_div_bg_color` varchar(8) NOT NULL, `album_extended_div_bg_transparent` int(4) NOT NULL, `album_extended_div_border_radius` varchar(32) NOT NULL, `album_extended_div_margin` varchar(32) NOT NULL, `album_extended_div_padding` int(4) NOT NULL, `album_extended_div_separator_width` int(4) NOT NULL, `album_extended_div_separator_style` varchar(8) NOT NULL, `album_extended_div_separator_color` varchar(8) NOT NULL, `album_extended_thumb_div_bg_color` varchar(8) NOT NULL, `album_extended_thumb_div_border_radius` varchar(32) NOT NULL, `album_extended_thumb_div_border_width` int(4) NOT NULL, `album_extended_thumb_div_border_style` varchar(8) NOT NULL, `album_extended_thumb_div_border_color` varchar(8) NOT NULL, `album_extended_thumb_div_padding` varchar(32) NOT NULL, `album_extended_text_div_bg_color` varchar(8) NOT NULL, `album_extended_text_div_border_radius` varchar(32) NOT NULL, `album_extended_text_div_border_width` int(4) NOT NULL, `album_extended_text_div_border_style` varchar(8) NOT NULL, `album_extended_text_div_border_color` varchar(8) NOT NULL, `album_extended_text_div_padding` varchar(32) NOT NULL, `album_extended_title_span_border_width` int(4) NOT NULL, `album_extended_title_span_border_style` varchar(8) NOT NULL, `album_extended_title_span_border_color` varchar(8) NOT NULL, `album_extended_title_font_color` varchar(8) NOT NULL, `album_extended_title_font_style` varchar(16) NOT NULL, `album_extended_title_font_size` int(4) NOT NULL, `album_extended_title_font_weight` varchar(8) NOT NULL, `album_extended_title_margin_bottom` int(4) NOT NULL, `album_extended_title_padding` varchar(32) NOT NULL, `album_extended_desc_span_border_width` int(4) NOT NULL, `album_extended_desc_span_border_style` varchar(8) NOT NULL, `album_extended_desc_span_border_color` varchar(8) NOT NULL, `album_extended_desc_font_color` varchar(8) NOT NULL, `album_extended_desc_font_style` varchar(16) NOT NULL, `album_extended_desc_font_size` int(4) NOT NULL, `album_extended_desc_font_weight` varchar(8) NOT NULL, `album_extended_desc_padding` varchar(32) NOT NULL, `album_extended_desc_more_color` varchar(8) NOT NULL, `album_extended_desc_more_size` int(4) NOT NULL, `masonry_thumb_padding` int(4) NOT NULL, `masonry_thumb_border_radius` varchar(32) NOT NULL, `masonry_thumb_border_width` int(4) NOT NULL, `masonry_thumb_border_style` varchar(8) NOT NULL, `masonry_thumb_border_color` varchar(8) NOT NULL, `masonry_thumbs_bg_color` varchar(8) NOT NULL, `masonry_thumb_bg_transparent` int(4) NOT NULL, `masonry_thumb_transparent` int(4) NOT NULL, `masonry_thumb_align` varchar(8) NOT NULL, `masonry_thumb_hover_effect` varchar(64) NOT NULL, `masonry_thumb_hover_effect_value` varchar(64) NOT NULL, `masonry_thumb_transition` tinyint(1) NOT NULL, `mosaic_thumb_padding` int(4) NOT NULL, `mosaic_thumb_border_radius` varchar(32) NOT NULL, `mosaic_thumb_border_width` int(4) NOT NULL, `mosaic_thumb_border_style` varchar(8) NOT NULL, `mosaic_thumb_border_color` varchar(8) NOT NULL, `mosaic_thumbs_bg_color` varchar(8) NOT NULL, `mosaic_thumb_bg_transparent` int(4) NOT NULL, `mosaic_thumb_transparent` int(4) NOT NULL, `mosaic_thumb_align` varchar(8) NOT NULL, `mosaic_thumb_hover_effect` varchar(64) NOT NULL, `mosaic_thumb_hover_effect_value` varchar(64) NOT NULL, `mosaic_thumb_title_font_color` varchar(8) NOT NULL, `mosaic_thumb_title_font_style` varchar(16) NOT NULL, `mosaic_thumb_title_font_size` int(4) NOT NULL, `mosaic_thumb_title_font_weight` varchar(8) NOT NULL, `mosaic_thumb_title_margin` varchar(32) NOT NULL, `mosaic_thumb_title_shadow` varchar(32) NOT NULL, `slideshow_cont_bg_color` varchar(8) NOT NULL, `slideshow_close_btn_transparent` int(4) NOT NULL, `slideshow_rl_btn_bg_color` varchar(8) NOT NULL, `slideshow_rl_btn_border_radius` varchar(32) NOT NULL, `slideshow_rl_btn_border_width` int(4) NOT NULL, `slideshow_rl_btn_border_style` varchar(8) NOT NULL, `slideshow_rl_btn_border_color` varchar(8) NOT NULL, `slideshow_rl_btn_box_shadow` varchar(32) NOT NULL, `slideshow_rl_btn_color` varchar(8) NOT NULL, `slideshow_rl_btn_height` int(4) NOT NULL, `slideshow_rl_btn_size` int(4) NOT NULL, `slideshow_rl_btn_width` int(4) NOT NULL, `slideshow_close_rl_btn_hover_color` varchar(8) NOT NULL, `slideshow_filmstrip_pos` varchar(8) NOT NULL, `slideshow_filmstrip_thumb_border_width` int(4) NOT NULL, `slideshow_filmstrip_thumb_border_style` varchar(8) NOT NULL, `slideshow_filmstrip_thumb_border_color` varchar(8) NOT NULL, `slideshow_filmstrip_thumb_border_radius` varchar(32) NOT NULL, `slideshow_filmstrip_thumb_margin` varchar(32) NOT NULL, `slideshow_filmstrip_thumb_active_border_width` int(4) NOT NULL, `slideshow_filmstrip_thumb_active_border_color` varchar(8) NOT NULL, `slideshow_filmstrip_thumb_deactive_transparent` int(4) NOT NULL, `slideshow_filmstrip_rl_bg_color` varchar(8) NOT NULL, `slideshow_filmstrip_rl_btn_color` varchar(8) NOT NULL, `slideshow_filmstrip_rl_btn_size` int(4) NOT NULL, `slideshow_title_font_size` int(4) NOT NULL, `slideshow_title_font` varchar(16) NOT NULL, `slideshow_title_color` varchar(8) NOT NULL, `slideshow_title_opacity` int(4) NOT NULL, `slideshow_title_border_radius` varchar(32) NOT NULL, `slideshow_title_background_color` varchar(8) NOT NULL, `slideshow_title_padding` varchar(32) NOT NULL, `slideshow_description_font_size` int(4) NOT NULL, `slideshow_description_font` varchar(16) NOT NULL, `slideshow_description_color` varchar(8) NOT NULL, `slideshow_description_opacity` int(4) NOT NULL, `slideshow_description_border_radius` varchar(32) NOT NULL, `slideshow_description_background_color` varchar(8) NOT NULL, `slideshow_description_padding` varchar(32) NOT NULL, `slideshow_dots_width` int(4) NOT NULL, `slideshow_dots_height` int(4) NOT NULL, `slideshow_dots_border_radius` varchar(32) NOT NULL, `slideshow_dots_background_color` varchar(8) NOT NULL, `slideshow_dots_margin` int(4) NOT NULL, `slideshow_dots_active_background_color` varchar(8) NOT NULL, `slideshow_dots_active_border_width` int(4) NOT NULL, `slideshow_dots_active_border_color` varchar(8) NOT NULL, `slideshow_play_pause_btn_size` int(4) NOT NULL, `slideshow_rl_btn_style` varchar(16) NOT NULL, `blog_style_margin` varchar(32) NOT NULL, `blog_style_padding` varchar(32) NOT NULL, `blog_style_border_radius` varchar(32) NOT NULL, `blog_style_border_width` int(4) NOT NULL, `blog_style_border_style` varchar(16) NOT NULL, `blog_style_border_color` varchar(8) NOT NULL, `blog_style_bg_color` varchar(8) NOT NULL, `blog_style_box_shadow` varchar(32) NOT NULL, `blog_style_transparent` int(4) NOT NULL, `blog_style_align` varchar(8) NOT NULL, `blog_style_share_buttons_bg_color` varchar(8) NOT NULL, `blog_style_share_buttons_margin` varchar(32) NOT NULL, `blog_style_share_buttons_border_radius` varchar(32) NOT NULL, `blog_style_share_buttons_border_width` int(4) NOT NULL, `blog_style_share_buttons_border_style` varchar(16) NOT NULL, `blog_style_share_buttons_border_color` varchar(8) NOT NULL, `blog_style_share_buttons_align` varchar(8) NOT NULL, `blog_style_img_font_size` int(4) NOT NULL, `blog_style_img_font_family` varchar(16) NOT NULL, `blog_style_img_font_color` varchar(8) NOT NULL, `blog_style_share_buttons_color` varchar(8) NOT NULL, `blog_style_share_buttons_bg_transparent` int(4) NOT NULL, `blog_style_share_buttons_font_size` int(4) NOT NULL, `image_browser_margin` varchar(32) NOT NULL, `image_browser_padding` varchar(32) NOT NULL, `image_browser_border_radius` varchar(32) NOT NULL, `image_browser_border_width` int(4) NOT NULL, `image_browser_border_style` varchar(16) NOT NULL, `image_browser_border_color` varchar(8) NOT NULL, `image_browser_bg_color` varchar(8) NOT NULL, `image_browser_box_shadow` varchar(32) NOT NULL, `image_browser_transparent` int(4) NOT NULL, `image_browser_align` varchar(8) NOT NULL, `image_browser_image_description_margin` varchar(32) NOT NULL, `image_browser_image_description_padding` varchar(32) NOT NULL, `image_browser_image_description_border_radius` varchar(32) NOT NULL, `image_browser_image_description_border_width` int(4) NOT NULL, `image_browser_image_description_border_style` varchar(16) NOT NULL, `image_browser_image_description_border_color` varchar(8) NOT NULL, `image_browser_image_description_bg_color` varchar(8) NOT NULL, `image_browser_image_description_align` varchar(8) NOT NULL, `image_browser_img_font_size` int(4) NOT NULL, `image_browser_img_font_family` varchar(16) NOT NULL, `image_browser_img_font_color` varchar(8) NOT NULL, `image_browser_full_padding` varchar(32) NOT NULL, `image_browser_full_border_radius` varchar(32) NOT NULL, `image_browser_full_border_width` int(4) NOT NULL, `image_browser_full_border_style` varchar(16) NOT NULL, `image_browser_full_border_color` varchar(8) NOT NULL, `image_browser_full_bg_color` varchar(8) NOT NULL, `image_browser_full_transparent` int(4) NOT NULL, `lightbox_info_pos` varchar(8) NOT NULL, `lightbox_info_align` varchar(8) NOT NULL, `lightbox_info_bg_color` varchar(8) NOT NULL, `lightbox_info_bg_transparent` int(4) NOT NULL, `lightbox_info_border_width` int(4) NOT NULL, `lightbox_info_border_style` varchar(16) NOT NULL, `lightbox_info_border_color` varchar(8) NOT NULL, `lightbox_info_border_radius` varchar(32) NOT NULL, `lightbox_info_padding` varchar(32) NOT NULL, `lightbox_info_margin` varchar(32) NOT NULL, `lightbox_title_color` varchar(8) NOT NULL, `lightbox_title_font_style` varchar(16) NOT NULL, `lightbox_title_font_weight` varchar(8) NOT NULL, `lightbox_title_font_size` int(4) NOT NULL, `lightbox_description_color` varchar(8) NOT NULL, `lightbox_description_font_style` varchar(16) NOT NULL, `lightbox_description_font_weight` varchar(8) NOT NULL, `lightbox_description_font_size` int(4) NOT NULL, `lightbox_rate_pos` varchar(8) NOT NULL, `lightbox_rate_align` varchar(8) NOT NULL, `lightbox_rate_icon` varchar(16) NOT NULL, `lightbox_rate_color` varchar(8) NOT NULL, `lightbox_rate_size` int(4) NOT NULL, `lightbox_rate_stars_count` int(4) NOT NULL, `lightbox_rate_padding` varchar(32) NOT NULL, `lightbox_rate_hover_color` varchar(8) NOT NULL, `lightbox_hit_pos` varchar(8) NOT NULL, `lightbox_hit_align` varchar(8) NOT NULL, `lightbox_hit_bg_color` varchar(8) NOT NULL, `lightbox_hit_bg_transparent` int(4) NOT NULL, `lightbox_hit_border_width` int(4) NOT NULL, `lightbox_hit_border_style` varchar(16) NOT NULL, `lightbox_hit_border_color` varchar(8) NOT NULL, `lightbox_hit_border_radius` varchar(32) NOT NULL, `lightbox_hit_padding` varchar(32) NOT NULL, `lightbox_hit_margin` varchar(32) NOT NULL, `lightbox_hit_color` varchar(8) NOT NULL, `lightbox_hit_font_style` varchar(16) NOT NULL, `lightbox_hit_font_weight` varchar(8) NOT NULL, `lightbox_hit_font_size` int(4) NOT NULL, `masonry_description_font_size` int(4) NOT NULL, `masonry_description_color` varchar(8) NOT NULL, `masonry_description_font_style` varchar(16) NOT NULL, `album_masonry_back_font_color` varchar(8) NOT NULL, `album_masonry_back_font_style` varchar(16) NOT NULL, `album_masonry_back_font_size` int(4) NOT NULL, `album_masonry_back_font_weight` varchar(8) NOT NULL, `album_masonry_back_padding` varchar(32) NOT NULL, `album_masonry_title_font_color` varchar(8) NOT NULL, `album_masonry_title_font_style` varchar(16) NOT NULL, `album_masonry_thumb_title_pos` varchar(8) NOT NULL, `album_masonry_title_font_size` int(4) NOT NULL, `album_masonry_title_font_weight` varchar(8) NOT NULL, `album_masonry_title_margin` varchar(32) NOT NULL, `album_masonry_title_shadow` varchar(32) NOT NULL, `album_masonry_thumb_margin` int(4) NOT NULL, `album_masonry_thumb_padding` int(4) NOT NULL, `album_masonry_thumb_border_radius` varchar(32) NOT NULL, `album_masonry_thumb_border_width` int(4) NOT NULL, `album_masonry_thumb_border_style` varchar(8) NOT NULL, `album_masonry_thumb_border_color` varchar(8) NOT NULL, `album_masonry_thumb_bg_color` varchar(8) NOT NULL, `album_masonry_thumbs_bg_color` varchar(8) NOT NULL, `album_masonry_thumb_bg_transparent` int(4) NOT NULL, `album_masonry_thumb_box_shadow` varchar(32) NOT NULL, `album_masonry_thumb_transparent` int(4) NOT NULL, `album_masonry_thumb_align` varchar(8) NOT NULL, `album_masonry_thumb_hover_effect` varchar(64) NOT NULL, `album_masonry_thumb_hover_effect_value` varchar(64) NOT NULL, `album_masonry_thumb_transition` tinyint(1) NOT NULL, `carousel_cont_bg_color` varchar(8) NOT NULL, `carousel_cont_btn_transparent` int(4) NOT NULL, `carousel_close_btn_transparent` int(4) NOT NULL, `carousel_rl_btn_bg_color` varchar(8) NOT NULL, `carousel_rl_btn_border_radius` varchar(32) NOT NULL, `carousel_rl_btn_border_width` int(4) NOT NULL, `carousel_rl_btn_border_style` varchar(8) NOT NULL, `carousel_rl_btn_border_color` varchar(8) NOT NULL, `carousel_rl_btn_color` varchar(8) NOT NULL, `carousel_rl_btn_height` int(4) NOT NULL, `carousel_rl_btn_size` int(4) NOT NULL, `carousel_play_pause_btn_size` int(4) NOT NULL, `carousel_rl_btn_width` int(4) NOT NULL, `carousel_close_rl_btn_hover_color` varchar(8) NOT NULL, `carousel_rl_btn_style` varchar(16) NOT NULL, `carousel_mergin_bottom` varchar(8) NOT NULL, `carousel_font_family` varchar(8) NOT NULL, `carousel_feature_border_width` int(4) NOT NULL, `carousel_feature_border_style` varchar(8) NOT NULL, `carousel_feature_border_color` varchar(8) NOT NULL, `carousel_caption_background_color` varchar(8) NOT NULL, `carousel_caption_bottom` int(4) NOT NULL, `carousel_caption_p_mergin` int(4) NOT NULL, `carousel_caption_p_pedding` int(4) NOT NULL, `carousel_caption_p_font_weight` varchar(8) NOT NULL, `carousel_caption_p_font_size` int(4) NOT NULL, `carousel_caption_p_color` varchar(8) NOT NULL, `carousel_title_opacity` int(4) NOT NULL, `carousel_title_border_radius` varchar(8) NOT NULL, `default_theme` tinyint(1) NOT NULL, `mosaic_thumb_transition` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_bwg_theme` -- LOCK TABLES `wp_bwg_theme` WRITE; /*!40000 ALTER TABLE `wp_bwg_theme` DISABLE KEYS */; INSERT INTO `wp_bwg_theme` VALUES (1,'Theme 1',4,0,'0',0,'none','CCCCCC','FFFFFF','FFFFFF',0,'0px 0px 0px #888888',100,'center','scale','1.1',1,'CCCCCC','segoe ui','bottom',16,'bold','2px','0px 0px 0px #888888','bottom','center',0,12,'segoe ui','666666','bold',1,'solid','E3E3E3','0','0','3px 6px','FFFFFF',100,'0',1,0,'000000',70,'000000','bottom','center',20,10,7,100,'FFFFFF',14,100,'000000',65,4,100,'000000',2,'16px','none','FFFFFF','0','FFFFFF',10,20,20,'-10','-10','FFFFFF','000000',80,'20px',0,'none','FFFFFF','','FFFFFF',40,40,20,'CCCCCC','left',400,'000000','CCCCCC','segoe ui',12,'616161','666666',1,'none','3px','3px 10px','333333','666666',1,'none','0','2px',1,'solid','383838',14,10,12,'CCCCCC','top','3B3B3B',20,'FFFFFF','0 1px',1,'solid','000000','0',80,0,'FFFFFF','fa-chevron','000000','segoe ui',16,'bold','0','CCCCCC','segoe ui','bottom',16,'bold','2px','0px 0px 0px #888888',4,0,'0',0,'none','CCCCCC','FFFFFF','FFFFFF',0,'0px 0px 0px #888888',100,'center','scale','1.1',0,2,0,'0',0,'none','CCCCCC','FFFFFF','FFFFFF',0,'',100,'left','scale','1.1',0,'000000','segoe ui',20,'bold','0','FFFFFF',0,'0 0 0 0','0 0 5px 0',10,1,'solid','E0E0E0','FFFFFF','0',1,'solid','E8E8E8','5px','FFFFFF','0',1,'solid','E8E8E8','5px',1,'none','CCCCCC','000000','segoe ui',16,'bold',2,'2px',1,'none','CCCCCC','000000','segoe ui',14,'normal','2px','F2D22E',12,4,'0',0,'none','CCCCCC','FFFFFF',0,100,'center','scale','1.1',0,4,'0',0,'none','CCCCCC','FFFFFF',0,100,'center','scale','1.1','CCCCCC','segoe ui',16,'bold','2px','0px 0px 0px #888888','000000',100,'000000','20px',0,'none','FFFFFF','0px 0px 0px #000000','FFFFFF',40,20,40,'CCCCCC','top',1,'solid','000000','0','0 1px',0,'FFFFFF',80,'3B3B3B','FFFFFF',20,16,'segoe ui','FFFFFF',70,'5px','000000','0 0 0 0',14,'segoe ui','FFFFFF',70,'0','000000','5px 10px 5px 10px',12,12,'5px','F2D22E',3,'FFFFFF',1,'000000',60,'fa-chevron','2px','0','0',1,'solid','F5F5F5','FFFFFF','',80,'center','FFFFFF','5px auto 10px auto','0',0,'none','000000','right',16,'segoe ui','000000','B3AFAF',0,20,'2px auto','4px','0',1,'none','F5F5F5','EBEBEB','',80,'center','0px 5px 0px 5px','8px 8px 8px 8px','0',1,'none','FFFFFF','EBEBEB','center',15,'segoe ui','000000','4px','0',2,'none','F7F7F7','F5F5F5',90,'top','right','000000',70,1,'none','000000','5px','5px','15px','FFFFFF','segoe ui','bold',18,'FFFFFF','segoe ui','normal',14,'bottom','right','star','F9D062',20,5,'15px','F7B50E','bottom','left','000000',70,1,'none','000000','5px','5px','0 5px','FFFFFF','segoe ui','normal',14,12,'CCCCCC','segoe ui','000000','segoe ui',16,'bold','0','CCCCCC','segoe ui','bottom',16,'bold','2px','0px 0px 0px #888888',4,0,'0',0,'none','CCCCCC','FFFFFF','FFFFFF',0,'0px 0px 0px #888888',100,'center','scale','1.1',0,'000000',0,100,'000000','20px',0,'none','FFFFFF','FFFFFF',40,20,20,40,'CCCCCC','fa-chevron','0.5','Arial',2,'solid','5D204F','000000',0,0,5,'bold',14,'white',100,'5px',1,1),(2,'Theme 2',4,4,'0',5,'none','FFFFFF','E8E8E8','FFFFFF',0,'0px 0px 0px #888888',100,'center','rotate','2deg',1,'CCCCCC','segoe ui','bottom',16,'bold','5px','','bottom','center',0,12,'segoe ui','666666','bold',1,'none','E3E3E3','0','0','3px 6px','FCFCFC',100,'0',1,0,'000000',70,'000000','bottom','center',20,10,7,80,'FFFFFF',14,100,'000000',80,4,95,'000000',0,'16px','none','FFFFFF','','FFFFFF',10,20,20,'-10','-10','FFFFFF','000000',80,'20px',2,'none','FFFFFF','','FFFFFF',40,40,20,'FFFFFF','left',400,'000000','CCCCCC','arial',12,'333333','666666',1,'none','3px','3px 10px','333333','666666',1,'none','0','3px',1,'solid','2B2B2B',14,10,12,'FFFFFF','top','2B2B2B',20,'FFFFFF','0 1px',1,'none','000000','0',80,0,'FFFFFF','fa-chevron','000000','segoe ui',14,'normal','0','CCCCCC','segoe ui','bottom',16,'bold','5px','',4,4,'0',1,'none','000000','E8E8E8','FFFFFF',100,'',100,'center','rotate','2deg',1,2,4,'0',4,'none','E8E8E8','E8E8E8','FFFFFF',100,'',100,'left','rotate','2deg',0,'000000','segoe ui',16,'bold','0','FFFFFF',0,'0','0 0 5px 0',10,1,'none','CCCCCC','FFFFFF','0',0,'none','CCCCCC','0','FFFFFF','0',1,'none','CCCCCC','5px',1,'none','CCCCCC','000000','segoe ui',16,'bold',2,'2px',1,'none','CCCCCC','000000','segoe ui',14,'normal','2px','FFC933',12,4,'2px',1,'none','CCCCCC','FFFFFF',0,80,'center','rotate','2deg',0,4,'2px',1,'none','CCCCCC','FFFFFF',0,80,'center','rotate','2deg','CCCCCC','segoe ui',16,'bold','2px','0px 0px 0px #888888','000000',100,'000000','20px',0,'none','FFFFFF','','FFFFFF',40,20,40,'DBDBDB','bottom',1,'none','000000','0','0 1px',0,'FFFFFF',80,'303030','FFFFFF',20,16,'segoe ui','FFFFFF',70,'5px','000000','5px 10px 5px 10px',14,'segoe ui','FFFFFF',70,'0','000000','5px 10px 5px 10px',10,10,'10px','292929',1,'292929',2,'FFC933',60,'fa-chevron','2px','4px','0',1,'none','CCCCCC','E8E8E8','',70,'center','FFFFFF','5px auto 10px auto','0',0,'none','000000','right',16,'segoe ui','000000','A1A1A1',0,20,'2px auto','4px','2px',1,'none','E8E8E8','E8E8E8','',80,'center','24px 0px 0px 0px','8px 8px 8px 8px','0',1,'none','FFFFFF','E8E8E8','center',14,'segoe ui','000000','4px','0',1,'solid','EDEDED','FFFFFF',90,'top','right','000000',70,1,'none','000000','5px','5px','15px','FFFFFF','segoe ui','bold',18,'FFFFFF','segoe ui','normal',14,'bottom','right','star','F9D062',20,5,'15px','F7B50E','bottom','left','000000',70,1,'none','000000','5px','5px','0 5px','FFFFFF','segoe ui','normal',14,12,'CCCCCC','segoe ui','000000','segoe ui',14,'normal','0','CCCCCC','segoe ui','bottom',16,'bold','5px','',4,4,'0',1,'none','000000','E8E8E8','FFFFFF',100,'',100,'center','rotate','2deg',1,'000000',0,100,'000000','20px',0,'none','FFFFFF','FFFFFF',40,20,20,40,'CCCCCC','fa-chevron','0.5','Arial',2,'solid','5D204F','000000',0,0,5,'bold',14,'white',100,'5px',0,1); /*!40000 ALTER TABLE `wp_bwg_theme` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_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=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL auto_increment, `comment_post_ID` bigint(20) unsigned NOT NULL default '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL default '', `comment_author_url` varchar(200) NOT NULL default '', `comment_author_IP` varchar(100) NOT NULL default '', `comment_date` datetime NOT NULL default '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL default '0', `comment_approved` varchar(20) NOT NULL default '1', `comment_agent` varchar(255) NOT NULL default '', `comment_type` varchar(20) NOT NULL default '', `comment_parent` bigint(20) unsigned NOT NULL default '0', `user_id` bigint(20) unsigned NOT NULL default '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (3,420,'Cheap True Religion','','http://tr.all-shop.top/','221.234.77.117','2015-09-18 04:18:19','2015-09-18 04:18:19','<strong>Cheap True Religion</strong>\n\nYou’re just about right but what about the last one you posted not long ago that was slightly different? I believe you were right the first time.',0,'0','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','trackback',0,0),(2,341,'Monday Morning Live! Join me from 7am-9:30 for TBP’s 1st live morning show! - The Beloit Podcast','','http://thebeloitpod.com/wordpress1/index.php/2015/08/09/monday-morning-live-join-me-from-7am-930-for-tbps-1st-live-morning-show/','10.30.65.101','2015-08-09 16:07:50','2015-08-09 16:07:50','[…] Live! […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/4.2.2','pingback',0,0),(4,481,'womens oakley sunglasses','','http://shopping.oksunglasseswebsite.com/','112.111.185.94','2015-09-29 21:58:42','2015-09-29 21:58:42','<strong>womens oakley sunglasses</strong>\n\nSaved as a favorite, I really like your blog!',0,'0','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','trackback',0,0),(5,495,'oakley sunglasses outlet','','http://shopping.cheapsunglasssales.com/','175.44.9.212','2015-10-02 16:41:00','2015-10-02 16:41:00','<strong>oakley sunglasses outlet</strong>\n\nSaved as a favorite, I really like your blog!',0,'0','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','trackback',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_forum_forums` -- DROP TABLE IF EXISTS `wp_forum_forums`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_forum_forums` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', `parent_id` int(11) NOT NULL default '0', `description` varchar(255) NOT NULL default '', `views` int(11) NOT NULL default '0', `sort` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_forum_forums` -- LOCK TABLES `wp_forum_forums` WRITE; /*!40000 ALTER TABLE `wp_forum_forums` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_forum_forums` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_forum_groups` -- DROP TABLE IF EXISTS `wp_forum_groups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_forum_groups` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', `description` varchar(255) default '', `usergroups` varchar(255) default '', `sort` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_forum_groups` -- LOCK TABLES `wp_forum_groups` WRITE; /*!40000 ALTER TABLE `wp_forum_groups` DISABLE KEYS */; INSERT INTO `wp_forum_groups` VALUES (1,'Uncategorized','Category Uncategorized Description','',0),(2,'Introductions','This is where you can introduce yourself to the TBP community. ','',7),(3,'Skills and Self-sufficiency topics ','Share your skills and self sufficiency topics with the TBP community.','',5),(4,'Suggestions, Support, and Resources','','',1),(5,'Barter/Negotiate/Trade','This where you can create new topics to barter, negotiate, or trade at your own will. I will moderate as little as necessary. Being a ridiculous(search the term if needed) will get you removed completely. This is an honorable forum! Let it remain as such.','',3),(6,'Community Resources','A community resource is anything that has the potential to improve the quality of life in a community. Every community needs resources and access to them. Lets create or share some of the more simple and complex resources we can provide for others in our ','',6),(7,'The TBP Wiki','This is where you can discuss everything regarding the TBP wiki. Have a question about it? The wiki is a database for entering facts and other unspecific data about Beloit and our area. Document anything from a story you have, historical information, majo','',2),(8,'Memberships & Monthly Money Bomb','All questions regarding TBP memberships can be posted here. Either I, the admin of this site, or someone within the TBP community will answer your question.\r\n\r\n','',4); /*!40000 ALTER TABLE `wp_forum_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_forum_posts` -- DROP TABLE IF EXISTS `wp_forum_posts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_forum_posts` ( `id` int(11) NOT NULL auto_increment, `text` longtext, `parent_id` int(11) NOT NULL default '0', `date` datetime NOT NULL default '0000-00-00 00:00:00', `author_id` int(11) NOT NULL default '0', `subject` varchar(255) NOT NULL default '', `views` int(11) NOT NULL default '0', PRIMARY KEY (`id`), FULLTEXT KEY `text` (`text`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_forum_posts` -- LOCK TABLES `wp_forum_posts` WRITE; /*!40000 ALTER TABLE `wp_forum_posts` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_forum_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_forum_reputation_posts` -- DROP TABLE IF EXISTS `wp_forum_reputation_posts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_forum_reputation_posts` ( `id` int(11) NOT NULL auto_increment, `author_id` int(11) NOT NULL default '0', `post_id` int(11) NOT NULL default '0', `post_author_id` int(11) NOT NULL default '0', `value` int(11) NOT NULL default '0', `date` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_forum_reputation_posts` -- LOCK TABLES `wp_forum_reputation_posts` WRITE; /*!40000 ALTER TABLE `wp_forum_reputation_posts` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_forum_reputation_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_forum_threads` -- DROP TABLE IF EXISTS `wp_forum_threads`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_forum_threads` ( `id` int(11) NOT NULL auto_increment, `parent_id` int(11) NOT NULL default '0', `views` int(11) NOT NULL default '0', `subject` varchar(255) NOT NULL default '', `date` datetime NOT NULL default '0000-00-00 00:00:00', `status` varchar(20) NOT NULL default 'open', `starter` int(11) NOT NULL, `last_post` datetime NOT NULL, PRIMARY KEY (`id`), FULLTEXT KEY `subject` (`subject`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_forum_threads` -- LOCK TABLES `wp_forum_threads` WRITE; /*!40000 ALTER TABLE `wp_forum_threads` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_forum_threads` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_forum_usergroup2user` -- DROP TABLE IF EXISTS `wp_forum_usergroup2user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_forum_usergroup2user` ( `id` int(11) NOT NULL auto_increment, `user_id` int(11) NOT NULL, `group` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_forum_usergroup2user` -- LOCK TABLES `wp_forum_usergroup2user` WRITE; /*!40000 ALTER TABLE `wp_forum_usergroup2user` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_forum_usergroup2user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_forum_usergroups` -- DROP TABLE IF EXISTS `wp_forum_usergroups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_forum_usergroups` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `description` varchar(255) default NULL, `leaders` varchar(255) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_forum_usergroups` -- LOCK TABLES `wp_forum_usergroups` WRITE; /*!40000 ALTER TABLE `wp_forum_usergroups` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_forum_usergroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gallery_albums` -- DROP TABLE IF EXISTS `wp_gallery_albums`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_gallery_albums` ( `album_id` int(10) unsigned NOT NULL auto_increment, `album_name` varchar(100) default NULL, `author` varchar(100) default NULL, `album_date` date default NULL, `description` text, `album_order` int(10) default NULL, PRIMARY KEY (`album_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_gallery_albums` -- LOCK TABLES `wp_gallery_albums` WRITE; /*!40000 ALTER TABLE `wp_gallery_albums` DISABLE KEYS */; INSERT INTO `wp_gallery_albums` VALUES (1,'Untitled Album','ReeseWood','2015-08-05','<p><a href=\\"http://www.beloitauction.com\\" target=\\"_blank\\"><img class=\\"alignnone size-medium wp-image-241\\" src=\\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/cropped-new-logo-beloit1-300x110.png\\" alt=\\"cropped-new-logo-beloit\\" width=\\"300\\" height=\\"110\\" /></a></p>[caption id=\\"attachment_196\\" align=\\"alignnone\\" width=\\"300\\"]<a href=\\"http://www.tindogrecords.com\\" target=\\"_blank\\"><img class=\\"size-medium wp-image-196\\" src=\\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/tindogrecords-300x217.jpg\\" alt=\\"Tin Dog Records\\" width=\\"300\\" height=\\"217\\" /></a> Tin Dog Records[/caption][caption id=\\"attachment_168\\" align=\\"alignnone\\" width=\\"300\\"]<a href=\\"https://www.facebook.com/candyrain.crafts?fref=ts\\" target=\\"_blank\\"><img class=\\"size-medium wp-image-168\\" src=\\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/DorothyDavis-300x300.jpg\\" alt=\\"Dorothy Davis\\" width=\\"300\\" height=\\"300\\" /></a> Dorothy Davis[/caption]',1); /*!40000 ALTER TABLE `wp_gallery_albums` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gallery_pics` -- DROP TABLE IF EXISTS `wp_gallery_pics`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_gallery_pics` ( `pic_id` int(10) unsigned NOT NULL auto_increment, `album_id` int(10) unsigned NOT NULL, `title` text, `description` text, `thumbnail_url` text NOT NULL, `sorting_order` int(20) default NULL, `date` date default NULL, `url` varchar(250) default NULL, `video` int(10) NOT NULL, `tags` text, `pic_name` text NOT NULL, `album_cover` int(1) NOT NULL, PRIMARY KEY (`pic_id`) ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_gallery_pics` -- LOCK TABLES `wp_gallery_pics` WRITE; /*!40000 ALTER TABLE `wp_gallery_pics` DISABLE KEYS */; INSERT INTO `wp_gallery_pics` VALUES (10,1,'','','o_19rvrf3vtlohjat2io15op1hclp.jpg',10,'2015-08-05','https://www.facebook.com/pro251',0,'','dariousPittman.jpg',0),(9,1,'','','o_19rvrep4n1j8ao512g51hls1js8k.jpg',9,'2015-08-05','https://www.facebook.com/Lilchief420KR3W?fref=ts',0,'','trace.jpg',0),(8,1,'','','o_19rvrefi21i1s1kn4srr1gacf6rf.jpg',8,'2015-08-05','https://www.facebook.com/candyrain.crafts?fref=ts',0,'','DorothyDavis.jpg',0),(7,1,'','','o_19rvrdh3bfrl1h81h2h1do01upoa.jpg',7,'2015-08-05','http://www.tindogrecords.com',0,'','tindogrecords.jpg',0),(11,1,'','','o_19rvrfkn21j6os6ip851p9f1dj9u.jpg',11,'2015-08-05','https://www.facebook.com/ladolphlius.richardson',0,'','R.Porter.jpg',0),(12,1,'','','o_19rvrgad019h19385gt16thkh313.jpg',12,'2015-08-05','https://www.reverbnation.com/earthtoclark',0,'','AdamGasser.jpg',0),(13,1,'','','o_19rvrgm60122d1h6o45t5au1pnu18.jpg',13,'2015-08-05','http://rodthebarber.com',0,'','RodGottfredson.jpg',0),(14,1,'','','o_19rvri73lh7h19vauvhldvuko1d.png',14,'2015-08-05','http://www.beloitauction.com',0,'','cropped-new-logo-beloit.png',1),(15,1,'','','o_19rvrigkfruudk11k1ku4rs01i.jpg',15,'2015-08-05','https://www.facebook.com/MediumJonnaKay/timeline',0,'','Jonnabusiness1.jpg',0); /*!40000 ALTER TABLE `wp_gallery_pics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gallery_settings` -- DROP TABLE IF EXISTS `wp_gallery_settings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_gallery_settings` ( `setting_id` int(10) unsigned NOT NULL auto_increment, `setting_key` varchar(100) NOT NULL, `setting_value` text NOT NULL, PRIMARY KEY (`setting_id`) ) ENGINE=MyISAM AUTO_INCREMENT=79 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_gallery_settings` -- LOCK TABLES `wp_gallery_settings` WRITE; /*!40000 ALTER TABLE `wp_gallery_settings` DISABLE KEYS */; INSERT INTO `wp_gallery_settings` VALUES (1,'thumbnails_custom_enable','1'),(2,'thumbnails_width','160'),(3,'thumbnails_height','120'),(4,'thumbnails_opacity','1'),(5,'thumbnails_border_size','2'),(6,'thumbnails_border_radius','2'),(7,'thumbnails_border_color','#000000'),(8,'margin_btw_thumbnails','5'),(9,'thumbnail_text_color','#ffffff'),(10,'thumbnail_text_align','center'),(11,'thumbnail_font_family','Verdana'),(12,'heading_font_size','16'),(13,'text_font_size','12'),(14,'thumbnail_desc_length','60'),(15,'cover_custom_enable','1'),(16,'cover_thumbnail_width','160'),(17,'cover_thumbnail_height','120'),(18,'cover_thumbnail_opacity','1'),(19,'cover_thumbnail_border_size','2'),(20,'cover_thumbnail_border_radius','2'),(21,'cover_thumbnail_border_color','#000000'),(22,'margin_btw_cover_thumbnails','5'),(23,'album_text_align','left'),(24,'album_font_family','Verdana'),(25,'album_heading_font_size','16'),(26,'album_text_font_size','12'),(27,'album_desc_length','400'),(28,'lightbox_type','pretty_photo'),(29,'lightbox_overlay_opacity','0.6'),(30,'lightbox_overlay_border_size','5'),(31,'lightbox_overlay_border_radius','5'),(32,'lightbox_text_color','#ffffff'),(33,'lightbox_overlay_border_color','#ffffff'),(34,'lightbox_inline_bg_color','#ffffff'),(35,'lightbox_overlay_bg_color','#000000'),(36,'lightbox_fade_in_time','500'),(37,'lightbox_fade_out_time','500'),(38,'lightbox_text_align','left'),(39,'lightbox_font_family','Verdana'),(40,'lightbox_heading_font_size','16'),(41,'lightbox_text_font_size','12'),(42,'facebook_comments','0'),(43,'social_sharing','0'),(44,'image_title_setting','1'),(45,'image_desc_setting','1'),(46,'autoplay_setting','0'),(47,'slide_interval','5'),(48,'pagination_setting','0'),(49,'images_per_page','10'),(50,'filters_setting','0'),(51,'filter_font_family','Verdana'),(52,'filter_font_size','12'),(53,'back_button_text','Back to Albums'),(54,'album_click_text','Click to View Album'),(55,'album_text_color','#C0C0C0'),(56,'button_color','#000000'),(57,'button_text_color','#CCCCCC'),(58,'filters_color','#2a83ed'),(59,'filters_text_color','#ffffff'),(60,'album_seperator','1'),(61,'back_button_font_family','Verdana'),(62,'back_button_font_size','12'),(63,'admin_full_control','1'),(64,'admin_read_control','1'),(65,'admin_write_control','1'),(66,'editor_full_control','0'),(67,'editor_read_control','1'),(68,'editor_write_control','0'),(69,'author_full_control','0'),(70,'author_read_control','1'),(71,'author_write_control','0'),(72,'contributor_full_control','0'),(73,'contributor_read_control','1'),(74,'contributor_write_control','0'),(75,'subscriber_full_control','0'),(76,'subscriber_read_control','1'),(77,'subscriber_write_control','0'),(78,'language_direction','inherit'); /*!40000 ALTER TABLE `wp_gallery_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_huge_itgallery_gallerys` -- DROP TABLE IF EXISTS `wp_huge_itgallery_gallerys`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_huge_itgallery_gallerys` ( `id` int(11) unsigned NOT NULL auto_increment, `name` varchar(200) NOT NULL, `sl_height` int(11) unsigned default NULL, `sl_width` int(11) unsigned default NULL, `pause_on_hover` text, `gallery_list_effects_s` text, `description` text, `param` text, `sl_position` text NOT NULL, `ordering` int(11) NOT NULL, `published` text, `huge_it_sl_effects` text NOT NULL, `display_type` int(11) default '2', `content_per_page` int(11) default '5', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_huge_itgallery_gallerys` -- LOCK TABLES `wp_huge_itgallery_gallerys` WRITE; /*!40000 ALTER TABLE `wp_huge_itgallery_gallerys` DISABLE KEYS */; INSERT INTO `wp_huge_itgallery_gallerys` VALUES (1,'My First Gallery',375,600,'on','random','4000','1000','center',1,'300','5',2,5),(2,'New gallery',375,600,'on','cubeH','4000','1000','center',1,'300','4',2,5); /*!40000 ALTER TABLE `wp_huge_itgallery_gallerys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_huge_itgallery_images` -- DROP TABLE IF EXISTS `wp_huge_itgallery_images`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_huge_itgallery_images` ( `id` int(11) unsigned NOT NULL auto_increment, `name` varchar(100) default NULL, `gallery_id` varchar(200) default NULL, `description` text, `image_url` text, `sl_url` varchar(128) default NULL, `sl_type` text NOT NULL, `link_target` text NOT NULL, `ordering` int(11) NOT NULL, `published` tinyint(4) unsigned default NULL, `published_in_sl_width` tinyint(4) unsigned default NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_huge_itgallery_images` -- LOCK TABLES `wp_huge_itgallery_images` WRITE; /*!40000 ALTER TABLE `wp_huge_itgallery_images` DISABLE KEYS */; INSERT INTO `wp_huge_itgallery_images` VALUES (1,'Rocky Balboa','1','<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>','http://thebeloitpod.com/wordpress1/wp-content/plugins/gallery-images/Front_images/projects/1.jpg','http://huge-it.com/fields/order-website-maintenance/','image','on',0,1,NULL),(2,'Skiing alone','1','<ul><li>lorem ipsumdolor sit amet</li><li>lorem ipsum dolor sit amet</li></ul><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>','http://thebeloitpod.com/wordpress1/wp-content/plugins/gallery-images/Front_images/projects/2.jpg','http://huge-it.com/fields/order-website-maintenance/','image','on',1,1,NULL),(3,'Summer dreams','1','<h6>Lorem Ipsum </h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p><ul><li>lorem ipsum</li><li>dolor sit amet</li><li>lorem ipsum</li><li>dolor sit amet</li></ul>','http://thebeloitpod.com/wordpress1/wp-content/plugins/gallery-images/Front_images/projects/3.jpg','http://huge-it.com/fields/order-website-maintenance/','image','on',2,1,NULL),(4,'Mr. Cosmo Kramer','1','<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><h6>Dolor sit amet</h6><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>','http://thebeloitpod.com/wordpress1/wp-content/plugins/gallery-images/Front_images/projects/4.jpg','http://huge-it.com/fields/order-website-maintenance/','image','on',3,1,NULL),(5,'Edgar Allan Poe','1','<h6>Lorem Ipsum</h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>','http://thebeloitpod.com/wordpress1/wp-content/plugins/gallery-images/Front_images/projects/5.jpg','http://huge-it.com/fields/order-website-maintenance/','image','on',4,1,NULL),(6,'Fix the moment !','1','<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>','http://thebeloitpod.com/wordpress1/wp-content/plugins/gallery-images/Front_images/projects/6.jpg','http://huge-it.com/fields/order-website-maintenance/','image','on',5,1,NULL),(7,'Lions eyes','1','<h6>Lorem Ipsum</h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>','http://thebeloitpod.com/wordpress1/wp-content/plugins/gallery-images/Front_images/projects/7.jpg','http://huge-it.com/fields/order-website-maintenance/','image','on',6,1,NULL),(8,'Photo with exposure','1','<h6>Lorem Ipsum </h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p><ul><li>lorem ipsum</li><li>dolor sit amet</li><li>lorem ipsum</li><li>dolor sit amet</li></ul>','http://thebeloitpod.com/wordpress1/wp-content/plugins/gallery-images/Front_images/projects/8.jpg','http://huge-it.com/fields/order-website-maintenance/','image','on',7,1,NULL),(9,'Travel with music','1','<h6>Lorem Ipsum </h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p><ul><li>lorem ipsum</li><li>dolor sit amet</li><li>lorem ipsum</li><li>dolor sit amet</li></ul>','http://thebeloitpod.com/wordpress1/wp-content/plugins/gallery-images/Front_images/projects/9.jpg','http://huge-it.com/fields/order-website-maintenance/','image','on',7,1,NULL); /*!40000 ALTER TABLE `wp_huge_itgallery_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL auto_increment, `link_url` varchar(255) NOT NULL default '', `link_name` varchar(255) NOT NULL default '', `link_image` varchar(255) NOT NULL default '', `link_target` varchar(25) NOT NULL default '', `link_description` varchar(255) NOT NULL default '', `link_visible` varchar(20) NOT NULL default 'Y', `link_owner` bigint(20) unsigned NOT NULL default '1', `link_rating` int(11) NOT NULL default '0', `link_updated` datetime NOT NULL default '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL default '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL default '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL auto_increment, `option_name` varchar(64) NOT NULL default '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL default 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=MyISAM AUTO_INCREMENT=30298 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://thebeloitpod.com/wordpress1','yes'),(2,'home','http://thebeloitpod.com/wordpress1','yes'),(3,'blogname','wordpress1','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','thebeloitpod@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','1','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/index.php/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'gzipcompression','0','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:21:{i:0;s:25:\"add-to-any/add-to-any.php\";i:1;s:22:\"amazon-link/amazon.php\";i:2;s:33:\"bbpress-new-ui/bbpress-new-ui.php\";i:3;s:19:\"bbpress/bbpress.php\";i:4;s:35:\"bp-forum-editor/bp-forum-editor.php\";i:5;s:24:\"buddypress/bp-loader.php\";i:6;s:45:\"custom-facebook-feed/custom-facebook-feed.php\";i:7;s:37:\"gd-bbpress-tools/gd-bbpress-tools.php\";i:8;s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";i:9;s:49:\"google-calendar-events/google-calendar-events.php\";i:10;s:42:\"google-publisher/GooglePublisherPlugin.php\";i:11;s:43:\"image-banner-widget/image-banner-widget.php\";i:12;s:19:\"jetpack/jetpack.php\";i:13;s:25:\"powerpress/powerpress.php\";i:14;s:29:\"seo-ultimate/seo-ultimate.php\";i:15;s:35:\"si-contact-form/si-contact-form.php\";i:16;s:43:\"simple-image-widget/simple-image-widget.php\";i:17;s:45:\"simple-page-sidebars/simple-page-sidebars.php\";i:18;s:25:\"ultimate-member/index.php\";i:19;s:52:\"wordpress-backup-to-dropbox/wp-backup-to-dropbox.php\";i:20;s:25:\"wp-members/wp-members.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'advanced_edit','0','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','0','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:5:{i:0;s:102:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/themes/selma/style.css\";i:1;s:113:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/plugins/bp-forum-editor/style.css\";i:2;s:123:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/plugins/bp-forum-editor/bp-forum-editor.php\";i:3;s:135:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/plugins/bbpress/templates/default/bbpress-functions.php\";i:4;s:115:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/plugins/bbpress/templates/index.php\";}','no'),(41,'template','twentyfifteen','yes'),(42,'stylesheet','selma','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','1','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','31535','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','1','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','posts','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'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'),(80,'widget_text','a:5:{i:1;a:0:{}i:4;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:203:\"<iframe scrolling=\"no\" frameborder=\"0\" style=\"width:300px;height:180px;border:0;overflow:hidden;\" width=\"300\" height=\"180\" src=\"http://app.stitcher.com/splayer/f/69747/40446289?el=0&refid=stpr\"></iframe>\";s:6:\"filter\";b:0;}i:5;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:592:\"<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"258\" height=\"338\" title=\"Click Here to donate!\" type=\"application/x-shockwave-flash\"><param name=\"movie\" value=\"//funds.gofundme.com/Widgetflex.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"flashvars\" value=\"page=thebeloitpod&template=0\" /><param name=\"wmode\" value=\"transparent\" /><embed allowScriptAccess=\"always\" src=\"//funds.gofundme.com/Widgetflex.swf\" quality=\"high\" flashVars=\"page=thebeloitpod&template=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"258\" height=\"338\"></embed></object>\";s:6:\"filter\";b:0;}i:6;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<a target=\"_blank\" href=\"https://www.google.com/calendar/event?action=TEMPLATE&tmeid=dDdiZ3Z0Y2k1MGRtdmNyODVvcmRiaDByNWsgd2FkcnNob3dAbQ&tmsrc=wadrshow%40gmail.com\"><img border=\"0\" src=\"https://www.google.com/calendar/images/ext/gc_button1_en.gif\"></a>\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:6:{s:29:\"gallery-bank/gallery-bank.php\";s:40:\"plugin_uninstall_script_for_gallery_bank\";s:45:\"custom-facebook-feed/custom-facebook-feed.php\";s:13:\"cff_uninstall\";s:53:\"child-theme-configurator/child-theme-configurator.php\";s:22:\"chld_thm_cfg_uninstall\";s:37:\"nextgen-facebook/nextgen-facebook.php\";a:2:{i:0;s:12:\"NgfbRegister\";i:1;s:17:\"network_uninstall\";}s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";a:2:{i:0;s:15:\"GADWP_Uninstall\";i:1;s:9:\"uninstall\";}s:43:\"insert-html-snippet/insert-html-snippet.php\";s:25:\"xyz_ihs_network_uninstall\";}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','0','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','31535','yes'),(89,'wp_user_roles','a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:9:\"add_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;}}s:13:\"bbp_keymaster\";a:2:{s:4:\"name\";s:9:\"Keymaster\";s:12:\"capabilities\";a:0:{}}s:13:\"bbp_spectator\";a:2:{s:4:\"name\";s:9:\"Spectator\";s:12:\"capabilities\";a:0:{}}s:11:\"bbp_blocked\";a:2:{s:4:\"name\";s:7:\"Blocked\";s:12:\"capabilities\";a:0:{}}s:13:\"bbp_moderator\";a:2:{s:4:\"name\";s:9:\"Moderator\";s:12:\"capabilities\";a:0:{}}s:15:\"bbp_participant\";a:2:{s:4:\"name\";s:11:\"Participant\";s:12:\"capabilities\";a:0:{}}}','yes'),(90,'_transient_random_seed','c439dad9b0a0110a313688d69d743fb8','yes'),(91,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(92,'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'),(93,'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'),(94,'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'),(95,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(96,'sidebars_widgets','a:9:{s:19:\"primary-widget-area\";a:14:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:13:\"simpleimage-2\";i:3;s:13:\"simpleimage-3\";i:4;s:13:\"simpleimage-4\";i:5;s:13:\"simpleimage-5\";i:6;s:13:\"simpleimage-6\";i:7;s:13:\"simpleimage-7\";i:8;s:13:\"simpleimage-8\";i:9;s:13:\"simpleimage-9\";i:10;s:14:\"simpleimage-10\";i:11;s:14:\"simpleimage-11\";i:12;s:14:\"simpleimage-12\";i:13;s:6:\"text-4\";}s:17:\"third-widget-area\";a:3:{i:0;s:22:\"bp_core_login_widget-2\";i:1;s:28:\"bp_core_whos_online_widget-2\";i:2;s:18:\"bbp_login_widget-2\";}s:19:\"wp_inactive_widgets\";a:6:{i:0;s:24:\"bp_core_members_widget-3\";i:1;s:20:\"widget_wpmemwidget-3\";i:2;s:17:\"recent-comments-2\";i:3;s:6:\"meta-2\";i:4;s:12:\"categories-2\";i:5;s:10:\"archives-2\";}s:9:\"sidebar-1\";a:22:{i:0;s:8:\"search-2\";i:1;s:6:\"text-4\";i:2;s:19:\"a2a_follow_widget-3\";i:3;s:14:\"recent-posts-2\";i:4;s:19:\"blog_subscription-2\";i:5;s:22:\"powerpress_subscribe-2\";i:6;s:13:\"simpleimage-2\";i:7;s:13:\"simpleimage-3\";i:8;s:13:\"simpleimage-4\";i:9;s:13:\"simpleimage-5\";i:10;s:13:\"simpleimage-6\";i:11;s:13:\"simpleimage-7\";i:12;s:13:\"simpleimage-8\";i:13;s:13:\"simpleimage-9\";i:14;s:14:\"simpleimage-10\";i:15;s:14:\"simpleimage-11\";i:16;s:14:\"simpleimage-12\";i:17;s:6:\"text-5\";i:18;s:24:\"gadash_frontend_widget-2\";i:19;s:33:\"wpcom_social_media_icons_widget-2\";i:20;s:18:\"twitter_timeline-2\";i:21;s:6:\"text-6\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:3:{i:0;s:22:\"bp_core_login_widget-2\";i:1;s:28:\"bp_core_whos_online_widget-2\";i:2;s:18:\"bbp_login_widget-2\";}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:2:{i:0;s:10:\"calendar-2\";i:1;s:7:\"pages-2\";}s:13:\"array_version\";i:3;}','yes'),(99,'cron','a:20:{i:1444332289;a:1:{s:27:\"monitor_dropbox_backup_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"every_min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1444332304;a:1:{s:27:\"monitor_dropbox_backup_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"every_min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1444332317;a:1:{s:27:\"monitor_dropbox_backup_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"every_min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1444332320;a:1:{s:27:\"monitor_dropbox_backup_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"every_min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1444332341;a:1:{s:27:\"monitor_dropbox_backup_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"every_min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1444332494;a:1:{s:25:\"su-sds-blog-load-blog-rss\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1444333042;a:1:{s:26:\"um_hourly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1444333100;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1444340804;a:1:{s:24:\"akismet_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:1444343842;a:2:{s:25:\"um_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"um_twicedaily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1444350371;a:1:{s:15:\"emg_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1444352400;a:1:{s:30:\"execute_periodic_drobox_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1444354704;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1444354727;a:1:{s:24:\"jp_purge_transients_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:1444365175;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1444374060;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1444394354;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:1444401758;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1444603042;a:1:{s:26:\"um_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(403,'_bbp_db_version','250','yes'),(404,'_bbp_edit_lock','5','yes'),(405,'_bbp_throttle_time','10','yes'),(406,'_bbp_allow_anonymous','0','yes'),(407,'_bbp_allow_global_access','1','yes'),(408,'_bbp_default_role','bbp_participant','yes'),(409,'_bbp_allow_revisions','1','yes'),(410,'_bbp_enable_favorites','1','yes'),(411,'_bbp_enable_subscriptions','1','yes'),(412,'_bbp_allow_topic_tags','1','yes'),(413,'_bbp_allow_search','1','yes'),(414,'_bbp_use_wp_editor','1','yes'),(415,'_bbp_use_autoembed','1','yes'),(416,'_bbp_thread_replies_depth','2','yes'),(417,'_bbp_allow_threaded_replies','0','yes'),(418,'_bbp_topics_per_page','20','yes'),(419,'_bbp_replies_per_page','15','yes'),(420,'_bbp_topics_per_rss_page','25','yes'),(421,'_bbp_replies_per_rss_page','25','yes'),(422,'_bbp_root_slug','forums','yes'),(423,'_bbp_include_root','1','yes'),(424,'_bbp_show_on_root','forums','yes'),(425,'_bbp_forum_slug','forum','yes'),(426,'_bbp_topic_slug','topic','yes'),(427,'_bbp_topic_tag_slug','topic-tag','yes'),(428,'_bbp_view_slug','view','yes'),(429,'_bbp_reply_slug','reply','yes'),(430,'_bbp_search_slug','search','yes'),(431,'_bbp_user_slug','users','yes'),(432,'_bbp_topic_archive_slug','topics','yes'),(433,'_bbp_reply_archive_slug','replies','yes'),(434,'_bbp_user_favs_slug','favorites','yes'),(435,'_bbp_user_subs_slug','subscriptions','yes'),(436,'_bbp_enable_group_forums','1','yes'),(437,'_bbp_group_forums_root_id','0','yes'),(392,'_site_transient_timeout_popular_importers_en_US','1438190210','yes'),(393,'_site_transient_popular_importers_en_US','a:2:{s:9:\"importers\";a:8:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:86:\"Install the Blogger importer to import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:109:\"Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:9:\"wpcat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:82:\"Install the LiveJournal importer to import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:99:\"Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:4:\"opml\";a:4:{s:4:\"name\";s:8:\"Blogroll\";s:11:\"description\";s:61:\"Install the blogroll importer to import links in OPML format.\";s:11:\"plugin-slug\";s:13:\"opml-importer\";s:11:\"importer-id\";s:4:\"opml\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:58:\"Install the RSS importer to import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:84:\"Install the Tumblr importer to import posts & media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:130:\"Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}','yes'),(401,'_bbp_private_forums','a:0:{}','yes'),(402,'_bbp_hidden_forums','a:0:{}','yes'),(103,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.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.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.3.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.3.1\";s:7:\"version\";s:5:\"4.3.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":12:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.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.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.3.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.3.1\";s:7:\"version\";s:5:\"4.3.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";s:13:\"support_email\";s:26:\"updatehelp42@wordpress.org\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":12:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.5.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.2.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.2.5-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.2.5-partial-2.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.5-rollback-2.zip\";}s:7:\"current\";s:5:\"4.2.5\";s:7:\"version\";s:5:\"4.2.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:5:\"4.2.2\";s:13:\"support_email\";s:26:\"updatehelp42@wordpress.org\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1444330900;s:15:\"version_checked\";s:5:\"4.2.2\";s:12:\"translations\";a:0:{}}','yes'),(263,'optionsframework','a:2:{s:2:\"id\";s:24:\"optionsframework_simpleo\";s:12:\"knownoptions\";a:1:{i:0;s:24:\"optionsframework_simpleo\";}}','yes'),(200,'bp-deactivated-components','a:0:{}','yes'),(201,'bb-config-location','\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/bb-config.php','yes'),(202,'bp-xprofile-base-group-name','Base','yes'),(203,'bp-xprofile-fullname-field-name','Name','yes'),(204,'bp-blogs-first-install','','yes'),(205,'bp-disable-profile-sync','0','yes'),(116,'auth_key',';FHNEM5 r-QGe{306:DOsDr!<RLH}- =VV(H0?uk{f$PmA&]#O*&mOZx09c2;qmZ','yes'),(118,'logged_in_key','yC$!]klzpqymx!&@2lt<=WXVbuK9t$*8>x~5v;O/q`~La,7T!T, )bkl).M%5|?b','yes'),(117,'auth_salt','J=7RMg1t;Ej8Ak{apR7)BIA3euZL#Yy!(I8Qz^T *+Jpw}bTAWTY^]G^aR:&sy`.','yes'),(119,'logged_in_salt','UV<5y)i2p&gzbq/n-lHwVA3|Jazm~51asD67X7Yl[zIEXTU:{^&ari&/qwk*f<%v','yes'),(120,'nonce_key','Jy/<RqC/T?)Tkg=bi/e~Gf*P._[EF51fC~~7Md;!o^yJk[RvEt!L rm~/~f*BC]M','yes'),(121,'nonce_salt',']T),((#hNw5-,zXB3R.:U!!g`v0 W:Fc:gyOUzO&oKy:Iw<p..m)WIa%bOj^U]j;','yes'),(767,'_site_transient_timeout_browser_648cb95a27b20fc3f5e5a7058a4b940d','1439079924','yes'),(768,'_site_transient_browser_648cb95a27b20fc3f5e5a7058a4b940d','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"43.0.2357.130\";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'),(125,'can_compress_scripts','1','yes'),(27268,'_transient_timeout_jpp_li_4f2b9e7b2962583237a12274b24fbab1','1443898070','no'),(27269,'_transient_jpp_li_4f2b9e7b2962583237a12274b24fbab1','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:54:\"No current blocks on this IP address (128.177.161.154)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:3:\"250\";s:6:\"expire\";i:1443898070;}','no'),(29565,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1444284519','no'),(29566,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1444241319','no'),(26731,'_transient_timeout_jpp_li_a010a8a2763d1b5fce94daf1098d915f','1443752700','no'),(26732,'_transient_jpp_li_a010a8a2763d1b5fce94daf1098d915f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (78.108.63.46)\";s:17:\"seconds_remaining\";i:2213;s:16:\"blocked_attempts\";s:3:\"226\";s:6:\"expire\";i:1443752700;}','no'),(30265,'_transient_jetpack_site_is_vcs','0','no'),(30253,'_transient_timeout_wpcom_subscribers_total','1444334331','no'),(30254,'_transient_wpcom_subscribers_total','a:2:{s:6:\"status\";s:7:\"success\";s:5:\"value\";i:0;}','no'),(30268,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1444330901;s:7:\"checked\";a:17:{s:9:\"blogsonry\";s:5:\"1.0.5\";s:15:\"business-leader\";s:3:\"1.2\";s:15:\"diversity-style\";s:5:\"1.1.7\";s:11:\"fpsychology\";s:5:\"1.0.2\";s:16:\"heatmap-adaptive\";s:5:\"1.5.3\";s:9:\"lightning\";s:5:\"0.1.2\";s:6:\"mantra\";s:5:\"2.4.0\";s:7:\"masonic\";s:5:\"1.2.0\";s:8:\"mw-small\";s:5:\"1.0.8\";s:5:\"selma\";s:5:\"1.0.2\";s:7:\"simpleo\";s:5:\"2.0.2\";s:15:\"skt-photo-world\";s:5:\"1.3.8\";s:10:\"stronghold\";s:5:\"0.0.9\";s:13:\"twentyfifteen\";s:3:\"1.2\";s:14:\"twentyfourteen\";s:3:\"1.4\";s:14:\"twentythirteen\";s:3:\"1.5\";s:11:\"willingness\";s:3:\"1.1\";}s:8:\"response\";a:9:{s:9:\"blogsonry\";a:4:{s:5:\"theme\";s:9:\"blogsonry\";s:11:\"new_version\";s:5:\"1.0.6\";s:3:\"url\";s:39:\"https://wordpress.org/themes/blogsonry/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/blogsonry.1.0.6.zip\";}s:9:\"lightning\";a:4:{s:5:\"theme\";s:9:\"lightning\";s:11:\"new_version\";s:5:\"0.1.7\";s:3:\"url\";s:39:\"https://wordpress.org/themes/lightning/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/lightning.0.1.7.zip\";}s:6:\"mantra\";a:4:{s:5:\"theme\";s:6:\"mantra\";s:11:\"new_version\";s:7:\"2.4.1.1\";s:3:\"url\";s:36:\"https://wordpress.org/themes/mantra/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/mantra.2.4.1.1.zip\";}s:7:\"masonic\";a:4:{s:5:\"theme\";s:7:\"masonic\";s:11:\"new_version\";s:5:\"1.2.3\";s:3:\"url\";s:37:\"https://wordpress.org/themes/masonic/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/masonic.1.2.3.zip\";}s:15:\"skt-photo-world\";a:4:{s:5:\"theme\";s:15:\"skt-photo-world\";s:11:\"new_version\";s:5:\"1.4.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/skt-photo-world/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/skt-photo-world.1.4.1.zip\";}s:10:\"stronghold\";a:4:{s:5:\"theme\";s:10:\"stronghold\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:40:\"https://wordpress.org/themes/stronghold/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/stronghold.1.0.1.zip\";}s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.1.3.zip\";}s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.1.5.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.1.6.zip\";}}s:12:\"translations\";a:0:{}}','yes'),(30269,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1444330903;s:8:\"response\";a:20:{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:5:\"3.1.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.4.zip\";}s:25:\"powerpress/powerpress.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"4269\";s:4:\"slug\";s:10:\"powerpress\";s:6:\"plugin\";s:25:\"powerpress/powerpress.php\";s:11:\"new_version\";s:5:\"6.0.5\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/powerpress/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/powerpress.6.0.5.zip\";}s:24:\"buddypress/bp-loader.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"7756\";s:4:\"slug\";s:10:\"buddypress\";s:6:\"plugin\";s:24:\"buddypress/bp-loader.php\";s:11:\"new_version\";s:5:\"2.3.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/buddypress/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/buddypress.2.3.4.zip\";s:14:\"upgrade_notice\";s:57:\"See: https://codex.buddypress.org/releases/version-2-3-4/\";}s:45:\"custom-facebook-feed/custom-facebook-feed.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"41442\";s:4:\"slug\";s:20:\"custom-facebook-feed\";s:6:\"plugin\";s:45:\"custom-facebook-feed/custom-facebook-feed.php\";s:11:\"new_version\";s:5:\"2.3.7\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/custom-facebook-feed/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/custom-facebook-feed.2.3.7.zip\";}s:35:\"si-contact-form/si-contact-form.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"9891\";s:4:\"slug\";s:15:\"si-contact-form\";s:6:\"plugin\";s:35:\"si-contact-form/si-contact-form.php\";s:11:\"new_version\";s:6:\"4.0.38\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/si-contact-form/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/si-contact-form.zip\";}s:42:\"google-publisher/GooglePublisherPlugin.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"46897\";s:4:\"slug\";s:16:\"google-publisher\";s:6:\"plugin\";s:42:\"google-publisher/GooglePublisherPlugin.php\";s:11:\"new_version\";s:5:\"1.2.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/google-publisher/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/google-publisher.zip\";}s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"39196\";s:4:\"slug\";s:33:\"google-analytics-dashboard-for-wp\";s:6:\"plugin\";s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";s:11:\"new_version\";s:5:\"4.8.3\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/google-analytics-dashboard-for-wp.4.8.3.zip\";}s:49:\"google-calendar-events/google-calendar-events.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"15794\";s:4:\"slug\";s:22:\"google-calendar-events\";s:6:\"plugin\";s:49:\"google-calendar-events/google-calendar-events.php\";s:11:\"new_version\";s:5:\"2.4.0\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/google-calendar-events/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/google-calendar-events.2.4.0.zip\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"20101\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"3.7.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.7.2.zip\";}s:19:\"meerkat/meerkat.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"61756\";s:4:\"slug\";s:7:\"meerkat\";s:6:\"plugin\";s:19:\"meerkat/meerkat.php\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/meerkat/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/meerkat.1.1.zip\";}s:37:\"nextgen-facebook/nextgen-facebook.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"33044\";s:4:\"slug\";s:16:\"nextgen-facebook\";s:6:\"plugin\";s:37:\"nextgen-facebook/nextgen-facebook.php\";s:11:\"new_version\";s:6:\"8.10.3\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/nextgen-facebook/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/nextgen-facebook.8.10.3.zip\";s:14:\"upgrade_notice\";s:199:\"2015/10/04 Added translation function calls to all option labels in settings pages and metaboxes. Added POT (Portable Object Template) file with translation strings in languages/nextgen-facebook.pot.\";}s:74:\"official-statcounter-plugin-for-wordpress/StatCounter-Wordpress-Plugin.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"2480\";s:4:\"slug\";s:41:\"official-statcounter-plugin-for-wordpress\";s:6:\"plugin\";s:74:\"official-statcounter-plugin-for-wordpress/StatCounter-Wordpress-Plugin.php\";s:11:\"new_version\";s:5:\"2.0.1\";s:3:\"url\";s:72:\"https://wordpress.org/plugins/official-statcounter-plugin-for-wordpress/\";s:7:\"package\";s:90:\"https://downloads.wordpress.org/plugin/official-statcounter-plugin-for-wordpress.2.0.1.zip\";}s:31:\"photo-gallery/photo-gallery.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"47473\";s:4:\"slug\";s:13:\"photo-gallery\";s:6:\"plugin\";s:31:\"photo-gallery/photo-gallery.php\";s:11:\"new_version\";s:6:\"1.2.62\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/photo-gallery/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/photo-gallery.1.2.62.zip\";}s:29:\"seo-ultimate/seo-ultimate.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"8173\";s:4:\"slug\";s:12:\"seo-ultimate\";s:6:\"plugin\";s:29:\"seo-ultimate/seo-ultimate.php\";s:11:\"new_version\";s:7:\"7.6.5.8\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/seo-ultimate/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/seo-ultimate.7.6.5.8.zip\";}s:25:\"add-to-any/add-to-any.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"429\";s:4:\"slug\";s:10:\"add-to-any\";s:6:\"plugin\";s:25:\"add-to-any/add-to-any.php\";s:11:\"new_version\";s:5:\"1.6.6\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/add-to-any/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/add-to-any.1.6.6.zip\";}s:23:\"sz-google/sz-google.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"42342\";s:4:\"slug\";s:9:\"sz-google\";s:6:\"plugin\";s:23:\"sz-google/sz-google.php\";s:11:\"new_version\";s:5:\"1.9.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/sz-google/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/sz-google.1.9.3.zip\";}s:25:\"ultimate-member/index.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"56989\";s:4:\"slug\";s:15:\"ultimate-member\";s:6:\"plugin\";s:25:\"ultimate-member/index.php\";s:11:\"new_version\";s:6:\"1.3.26\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/ultimate-member/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/ultimate-member.1.3.26.zip\";}s:66:\"videowhisper-live-streaming-integration/videowhisper_streaming.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"7687\";s:4:\"slug\";s:39:\"videowhisper-live-streaming-integration\";s:6:\"plugin\";s:66:\"videowhisper-live-streaming-integration/videowhisper_streaming.php\";s:11:\"new_version\";s:7:\"4.32.42\";s:3:\"url\";s:70:\"https://wordpress.org/plugins/videowhisper-live-streaming-integration/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/videowhisper-live-streaming-integration.zip\";}s:52:\"wordpress-backup-to-dropbox/wp-backup-to-dropbox.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"21895\";s:4:\"slug\";s:27:\"wordpress-backup-to-dropbox\";s:6:\"plugin\";s:52:\"wordpress-backup-to-dropbox/wp-backup-to-dropbox.php\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/wordpress-backup-to-dropbox/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/wordpress-backup-to-dropbox.zip\";}s:25:\"wp-members/wp-members.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"10426\";s:4:\"slug\";s:10:\"wp-members\";s:6:\"plugin\";s:25:\"wp-members/wp-members.php\";s:11:\"new_version\";s:7:\"3.0.5.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-members/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/plugin/wp-members.zip\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:22:\"amazon-link/amazon.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"17649\";s:4:\"slug\";s:11:\"amazon-link\";s:6:\"plugin\";s:22:\"amazon-link/amazon.php\";s:11:\"new_version\";s:5:\"3.2.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/amazon-link/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/amazon-link.3.2.5.zip\";}s:19:\"bbpress/bbpress.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11780\";s:4:\"slug\";s:7:\"bbpress\";s:6:\"plugin\";s:19:\"bbpress/bbpress.php\";s:11:\"new_version\";s:5:\"2.5.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/bbpress/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.8.zip\";}s:33:\"bbpress-new-ui/bbpress-new-ui.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"53230\";s:4:\"slug\";s:14:\"bbpress-new-ui\";s:6:\"plugin\";s:33:\"bbpress-new-ui/bbpress-new-ui.php\";s:11:\"new_version\";s:7:\"3.4.4.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/bbpress-new-ui/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/bbpress-new-ui.3.4.4.1.zip\";}s:35:\"bp-forum-editor/bp-forum-editor.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"60421\";s:4:\"slug\";s:15:\"bp-forum-editor\";s:6:\"plugin\";s:35:\"bp-forum-editor/bp-forum-editor.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/bp-forum-editor/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/bp-forum-editor.1.0.zip\";}s:37:\"gd-bbpress-tools/gd-bbpress-tools.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"28086\";s:4:\"slug\";s:16:\"gd-bbpress-tools\";s:6:\"plugin\";s:37:\"gd-bbpress-tools/gd-bbpress-tools.php\";s:11:\"new_version\";s:5:\"1.7.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/gd-bbpress-tools/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/gd-bbpress-tools.zip\";s:14:\"upgrade_notice\";s:91:\"Updated several Dev4Press links. Fixed potential XSS security issue with unsanitized input.\";}s:43:\"image-banner-widget/image-banner-widget.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14917\";s:4:\"slug\";s:19:\"image-banner-widget\";s:6:\"plugin\";s:43:\"image-banner-widget/image-banner-widget.php\";s:11:\"new_version\";s:5:\"1.4.2\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/image-banner-widget/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/image-banner-widget.1.4.2.zip\";}s:29:\"memberful-wp/memberful-wp.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"44881\";s:4:\"slug\";s:12:\"memberful-wp\";s:6:\"plugin\";s:29:\"memberful-wp/memberful-wp.php\";s:11:\"new_version\";s:6:\"1.18.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/memberful-wp/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/memberful-wp.1.18.1.zip\";}s:43:\"simple-image-widget/simple-image-widget.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"4504\";s:4:\"slug\";s:19:\"simple-image-widget\";s:6:\"plugin\";s:43:\"simple-image-widget/simple-image-widget.php\";s:11:\"new_version\";s:5:\"4.3.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/simple-image-widget/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/simple-image-widget.zip\";}s:45:\"simple-page-sidebars/simple-page-sidebars.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"26980\";s:4:\"slug\";s:20:\"simple-page-sidebars\";s:6:\"plugin\";s:45:\"simple-page-sidebars/simple-page-sidebars.php\";s:11:\"new_version\";s:5:\"1.2.0\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/simple-page-sidebars/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/simple-page-sidebars.zip\";}s:61:\"soundcloud-sound-competition/soundcloud-sound-competition.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"34939\";s:4:\"slug\";s:28:\"soundcloud-sound-competition\";s:6:\"plugin\";s:61:\"soundcloud-sound-competition/soundcloud-sound-competition.php\";s:11:\"new_version\";s:7:\"1.0.1.2\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/soundcloud-sound-competition/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/soundcloud-sound-competition.1.0.1.2.zip\";}s:25:\"forum-server/wpf-main.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"9176\";s:4:\"slug\";s:12:\"forum-server\";s:6:\"plugin\";s:25:\"forum-server/wpf-main.php\";s:11:\"new_version\";s:5:\"1.8.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/forum-server/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/forum-server.zip\";}}}','yes'),(28026,'_transient_timeout_jpp_li_6813029f0ba7543cc3f5da126777000b','1444010176','no'),(27460,'_transient_timeout_jpp_li_2dc04338f791c95e8e76b19fc70124da','1443941207','no'),(27461,'_transient_jpp_li_2dc04338f791c95e8e76b19fc70124da','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (92.222.252.206)\";s:17:\"seconds_remaining\";i:64;s:16:\"blocked_attempts\";s:3:\"252\";s:6:\"expire\";i:1443941207;}','no'),(26903,'_transient_jpp_li_916cb50bf27ec512b223cac28d55e846','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:41:\"This IP is currently blocked (89.31.57.5)\";s:17:\"seconds_remaining\";i:2302;s:16:\"blocked_attempts\";s:3:\"227\";s:6:\"expire\";i:1443791463;}','no'),(30290,'_site_transient_security_report_performed_recently','1','yes'),(21790,'_site_transient_browser_4fda3f27009155f52c27413f6db6373b','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"45.0.2454.85\";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'),(27076,'_transient_timeout_jpp_li_7dfeeb023d9c086f5f2a329f7f937c82','1443847945','no'),(27205,'_transient_timeout_jpp_li_7e885bc6fe8d9969a08a48e1f3eba545','1443887343','no'),(28978,'_transient_jpp_li_bf0f0dbc7c01f0b83c51af2b1139aea8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (171.25.193.20)\";s:17:\"seconds_remaining\";i:2322;s:16:\"blocked_attempts\";s:3:\"283\";s:6:\"expire\";i:1444164468;}','no'),(27030,'_transient_timeout_jpp_li_1aae7e43d38ad66f271b246fe08cd5b3','1443839876','no'),(27031,'_transient_jpp_li_1aae7e43d38ad66f271b246fe08cd5b3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:40:\"This IP is currently blocked (5.9.36.66)\";s:17:\"seconds_remaining\";i:727;s:16:\"blocked_attempts\";s:3:\"238\";s:6:\"expire\";i:1443839876;}','no'),(27048,'_transient_timeout_jpp_li_78b0c899e2b49ed5a4ca8b2191573c5b','1443846139','no'),(27049,'_transient_jpp_li_78b0c899e2b49ed5a4ca8b2191573c5b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (89.73.177.236)\";s:17:\"seconds_remaining\";i:604;s:16:\"blocked_attempts\";s:3:\"243\";s:6:\"expire\";i:1443846139;}','no'),(30163,'_transient_timeout_jpp_li_8495c703e0d5e31fa5206351da0e912a','1444316517','no'),(30164,'_transient_jpp_li_8495c703e0d5e31fa5206351da0e912a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.14.29.221)\";s:17:\"seconds_remaining\";i:630;s:16:\"blocked_attempts\";s:3:\"304\";s:6:\"expire\";i:1444316517;}','no'),(27190,'_transient_timeout_jpp_li_f1cc6a55a740bef4dc54a8209ea8cedb','1443883825','no'),(26954,'_transient_timeout_jpp_li_98f75ac5d7d245958c2595ea87767a2e','1443801863','no'),(26955,'_transient_jpp_li_98f75ac5d7d245958c2595ea87767a2e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.62.188.14)\";s:17:\"seconds_remaining\";i:3494;s:16:\"blocked_attempts\";s:3:\"236\";s:6:\"expire\";i:1443801863;}','no'),(28975,'_transient_jpp_li_ca2dfa9fd9cba6aa43e1e3dd106954e6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (72.52.75.27)\";s:17:\"seconds_remaining\";i:2129;s:16:\"blocked_attempts\";s:3:\"282\";s:6:\"expire\";i:1444164269;}','no'),(30230,'_transient_jpp_li_fe9599170dce6a3c510c0e85d00b846a','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (204.16.242.242)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:3:\"306\";s:6:\"expire\";i:1444334224;}','no'),(28155,'_transient_timeout_jpp_li_4949fcbc2d5a8d62b6a1b6dd52b2f346','1444039262','no'),(28156,'_transient_jpp_li_4949fcbc2d5a8d62b6a1b6dd52b2f346','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (198.96.155.3)\";s:17:\"seconds_remaining\";i:3191;s:16:\"blocked_attempts\";s:3:\"258\";s:6:\"expire\";i:1444039262;}','no'),(28157,'_transient_timeout_jpp_li_9eed1adf635a54e08141b49c7c2bdbb4','1444037622','no'),(28158,'_transient_jpp_li_9eed1adf635a54e08141b49c7c2bdbb4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (82.223.16.128)\";s:17:\"seconds_remaining\";i:1551;s:16:\"blocked_attempts\";s:3:\"259\";s:6:\"expire\";i:1444037622;}','no'),(28164,'_transient_timeout_jpp_li_42e2aa9b2e56a649830da4a3697cf814','1444040647','no'),(28165,'_transient_jpp_li_42e2aa9b2e56a649830da4a3697cf814','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (166.70.181.109)\";s:17:\"seconds_remaining\";i:2946;s:16:\"blocked_attempts\";s:3:\"261\";s:6:\"expire\";i:1444040647;}','no'),(30208,'_transient_jpp_li_75a511ec7ff32f09d42200fd6925d59e','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (66.249.73.163)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:3:\"306\";s:6:\"expire\";i:1444331217;}','no'),(28195,'_transient_timeout_jpp_li_c3d453f77808104dab67302d785158a3','1444051205','no'),(28196,'_transient_jpp_li_c3d453f77808104dab67302d785158a3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (193.110.157.151)\";s:17:\"seconds_remaining\";i:884;s:16:\"blocked_attempts\";s:3:\"263\";s:6:\"expire\";i:1444051205;}','no'),(28197,'_transient_timeout_jpp_li_6ed05d450514cf5c08c9f3fdff9c0fef','1444051943','no'),(28198,'_transient_jpp_li_6ed05d450514cf5c08c9f3fdff9c0fef','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (64.113.32.29)\";s:17:\"seconds_remaining\";i:1622;s:16:\"blocked_attempts\";s:3:\"264\";s:6:\"expire\";i:1444051943;}','no'),(28200,'_transient_timeout_jpp_li_bfd3cbfac01da165d3b27e3f3f78ff51','1444050984','no'),(28201,'_transient_jpp_li_bfd3cbfac01da165d3b27e3f3f78ff51','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (217.12.204.104)\";s:17:\"seconds_remaining\";i:658;s:16:\"blocked_attempts\";s:3:\"265\";s:6:\"expire\";i:1444050984;}','no'),(28319,'_transient_jpp_li_1309ec8a2e1a1a695f2dc522f3250ceb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (204.85.191.30)\";s:17:\"seconds_remaining\";i:890;s:16:\"blocked_attempts\";s:3:\"267\";s:6:\"expire\";i:1444076917;}','no'),(28320,'_transient_timeout_jpp_li_57fbc049532c499db2a6e89987684c2b','1444079343','no'),(28321,'_transient_jpp_li_57fbc049532c499db2a6e89987684c2b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (93.184.66.227)\";s:17:\"seconds_remaining\";i:3316;s:16:\"blocked_attempts\";s:3:\"268\";s:6:\"expire\";i:1444079343;}','no'),(29747,'_transient_timeout_jetpack_https_test','1444345532','no'),(29748,'_transient_jetpack_https_test','1','no'),(30289,'_site_transient_timeout_security_report_performed_recently','1444333106','yes'),(29497,'_transient_timeout_jpp_li_bf215b54a9045c567cd37b8b7b280390','1444233652','no'),(30297,'rewrite_rules','a:244:{s:17:\"feed/(podcast)/?$\";s:26:\"index.php?feed=$matches[1]\";s:19:\"index.php/forums/?$\";s:25:\"index.php?post_type=forum\";s:57:\"index.php/forums/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:52:\"index.php/forums/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:36:\"index.php/forums/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=forum&paged=$matches[1]\";s:19:\"index.php/topics/?$\";s:25:\"index.php?post_type=topic\";s:57:\"index.php/topics/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:52:\"index.php/topics/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:36:\"index.php/topics/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=topic&paged=$matches[1]\";s:28:\"forums/forum/([^/]+)/edit/?$\";s:34:\"index.php?forum=$matches[1]&edit=1\";s:28:\"forums/topic/([^/]+)/edit/?$\";s:34:\"index.php?topic=$matches[1]&edit=1\";s:28:\"forums/reply/([^/]+)/edit/?$\";s:34:\"index.php?reply=$matches[1]&edit=1\";s:32:\"forums/topic-tag/([^/]+)/edit/?$\";s:38:\"index.php?topic-tag=$matches[1]&edit=1\";s:48:\"forums/users/([^/]+)/topics/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_tops=1&paged=$matches[2]\";s:49:\"forums/users/([^/]+)/replies/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_reps=1&paged=$matches[2]\";s:51:\"forums/users/([^/]+)/favorites/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_favs=1&paged=$matches[2]\";s:55:\"forums/users/([^/]+)/subscriptions/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_subs=1&paged=$matches[2]\";s:30:\"forums/users/([^/]+)/topics/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_tops=1\";s:31:\"forums/users/([^/]+)/replies/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_reps=1\";s:33:\"forums/users/([^/]+)/favorites/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_favs=1\";s:37:\"forums/users/([^/]+)/subscriptions/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_subs=1\";s:28:\"forums/users/([^/]+)/edit/?$\";s:37:\"index.php?bbp_user=$matches[1]&edit=1\";s:23:\"forums/users/([^/]+)/?$\";s:30:\"index.php?bbp_user=$matches[1]\";s:40:\"forums/view/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bbp_view=$matches[1]&paged=$matches[2]\";s:27:\"forums/view/([^/]+)/feed/?$\";s:47:\"index.php?bbp_view=$matches[1]&feed=$matches[2]\";s:22:\"forums/view/([^/]+)/?$\";s:30:\"index.php?bbp_view=$matches[1]\";s:34:\"forums/search/page/?([0-9]{1,})/?$\";s:27:\"index.php?paged=$matches[1]\";s:16:\"forums/search/?$\";s:20:\"index.php?bbp_search\";s:19:\"^members-3/([^/]*)$\";s:41:\"index.php?page_id=373&um_user=$matches[1]\";s:17:\"^account/([^/]*)$\";s:40:\"index.php?page_id=377&um_tab=$matches[1]\";s:65:\"index.php/category/(.+?)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:60:\"index.php/category/(.+?)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:45:\"index.php/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:42:\"index.php/category/(.+?)/um-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&um-api=$matches[3]\";s:27:\"index.php/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:62:\"index.php/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:57:\"index.php/tag/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:42:\"index.php/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:39:\"index.php/tag/([^/]+)/um-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&um-api=$matches[3]\";s:24:\"index.php/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:63:\"index.php/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:58:\"index.php/type/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:43:\"index.php/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:25:\"index.php/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\"index.php/forums/forum/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:58:\"index.php/forums/forum/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:86:\"index.php/forums/forum/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:81:\"index.php/forums/forum/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"index.php/forums/forum/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"index.php/forums/forum/(.+?)/trackback/?$\";s:32:\"index.php?forum=$matches[1]&tb=1\";s:69:\"index.php/forums/forum/(.+?)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:64:\"index.php/forums/forum/(.+?)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:49:\"index.php/forums/forum/(.+?)/page/?([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&paged=$matches[2]\";s:56:\"index.php/forums/forum/(.+?)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&cpage=$matches[2]\";s:46:\"index.php/forums/forum/(.+?)/um-api(/(.*))?/?$\";s:46:\"index.php?forum=$matches[1]&um-api=$matches[3]\";s:52:\"index.php/forums/forum/.+?/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:63:\"index.php/forums/forum/.+?/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:41:\"index.php/forums/forum/(.+?)(/[0-9]+)?/?$\";s:44:\"index.php?forum=$matches[1]&page=$matches[2]\";s:50:\"index.php/forums/topic/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:60:\"index.php/forums/topic/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"index.php/forums/topic/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"index.php/forums/topic/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"index.php/forums/topic/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/forums/topic/([^/]+)/trackback/?$\";s:32:\"index.php?topic=$matches[1]&tb=1\";s:71:\"index.php/forums/topic/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:66:\"index.php/forums/topic/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:51:\"index.php/forums/topic/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&paged=$matches[2]\";s:58:\"index.php/forums/topic/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&cpage=$matches[2]\";s:48:\"index.php/forums/topic/([^/]+)/um-api(/(.*))?/?$\";s:46:\"index.php?topic=$matches[1]&um-api=$matches[3]\";s:54:\"index.php/forums/topic/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:65:\"index.php/forums/topic/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:43:\"index.php/forums/topic/([^/]+)(/[0-9]+)?/?$\";s:44:\"index.php?topic=$matches[1]&page=$matches[2]\";s:39:\"index.php/forums/topic/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"index.php/forums/topic/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"index.php/forums/topic/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"index.php/forums/topic/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"index.php/forums/topic/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"index.php/forums/reply/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:60:\"index.php/forums/reply/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"index.php/forums/reply/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"index.php/forums/reply/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"index.php/forums/reply/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/forums/reply/([^/]+)/trackback/?$\";s:32:\"index.php?reply=$matches[1]&tb=1\";s:51:\"index.php/forums/reply/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&paged=$matches[2]\";s:58:\"index.php/forums/reply/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&cpage=$matches[2]\";s:48:\"index.php/forums/reply/([^/]+)/um-api(/(.*))?/?$\";s:46:\"index.php?reply=$matches[1]&um-api=$matches[3]\";s:54:\"index.php/forums/reply/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:65:\"index.php/forums/reply/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:43:\"index.php/forums/reply/([^/]+)(/[0-9]+)?/?$\";s:44:\"index.php?reply=$matches[1]&page=$matches[2]\";s:39:\"index.php/forums/reply/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"index.php/forums/reply/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"index.php/forums/reply/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"index.php/forums/reply/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"index.php/forums/reply/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:75:\"index.php/forums/topic-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:70:\"index.php/forums/topic-tag/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:55:\"index.php/forums/topic-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?topic-tag=$matches[1]&paged=$matches[2]\";s:37:\"index.php/forums/topic-tag/([^/]+)/?$\";s:31:\"index.php?topic-tag=$matches[1]\";s:52:\"index.php/forums/search/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?bbp_search=$matches[1]&paged=$matches[2]\";s:34:\"index.php/forums/search/([^/]+)/?$\";s:32:\"index.php?bbp_search=$matches[1]\";s:32:\"index.php/forums/view/([^/]+)/?$\";s:30:\"index.php?bbp_view=$matches[1]\";s:45:\"index.php/um_form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"index.php/um_form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:83:\"index.php/um_form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:78:\"index.php/um_form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/um_form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"index.php/um_form/([^/]+)/trackback/?$\";s:34:\"index.php?um_form=$matches[1]&tb=1\";s:46:\"index.php/um_form/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?um_form=$matches[1]&paged=$matches[2]\";s:53:\"index.php/um_form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?um_form=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/um_form/([^/]+)/um-api(/(.*))?/?$\";s:48:\"index.php?um_form=$matches[1]&um-api=$matches[3]\";s:49:\"index.php/um_form/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:60:\"index.php/um_form/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:38:\"index.php/um_form/([^/]+)(/[0-9]+)?/?$\";s:46:\"index.php?um_form=$matches[1]&page=$matches[2]\";s:34:\"index.php/um_form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"index.php/um_form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"index.php/um_form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"index.php/um_form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/um_form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"index.php/um_role/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"index.php/um_role/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:83:\"index.php/um_role/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:78:\"index.php/um_role/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/um_role/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"index.php/um_role/([^/]+)/trackback/?$\";s:34:\"index.php?um_role=$matches[1]&tb=1\";s:46:\"index.php/um_role/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?um_role=$matches[1]&paged=$matches[2]\";s:53:\"index.php/um_role/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?um_role=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/um_role/([^/]+)/um-api(/(.*))?/?$\";s:48:\"index.php?um_role=$matches[1]&um-api=$matches[3]\";s:49:\"index.php/um_role/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:60:\"index.php/um_role/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:38:\"index.php/um_role/([^/]+)(/[0-9]+)?/?$\";s:46:\"index.php?um_role=$matches[1]&page=$matches[2]\";s:34:\"index.php/um_role/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"index.php/um_role/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"index.php/um_role/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"index.php/um_role/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/um_role/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"index.php/um_directory/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:60:\"index.php/um_directory/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"index.php/um_directory/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"index.php/um_directory/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"index.php/um_directory/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/um_directory/([^/]+)/trackback/?$\";s:39:\"index.php?um_directory=$matches[1]&tb=1\";s:51:\"index.php/um_directory/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?um_directory=$matches[1]&paged=$matches[2]\";s:58:\"index.php/um_directory/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?um_directory=$matches[1]&cpage=$matches[2]\";s:48:\"index.php/um_directory/([^/]+)/um-api(/(.*))?/?$\";s:53:\"index.php?um_directory=$matches[1]&um-api=$matches[3]\";s:54:\"index.php/um_directory/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:65:\"index.php/um_directory/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:43:\"index.php/um_directory/([^/]+)(/[0-9]+)?/?$\";s:51:\"index.php?um_directory=$matches[1]&page=$matches[2]\";s:39:\"index.php/um_directory/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"index.php/um_directory/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"index.php/um_directory/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"index.php/um_directory/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"index.php/um_directory/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:73:\"index.php/bp_member_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:53:\"index.php?bp_member_type=$matches[1]&feed=$matches[2]\";s:68:\"index.php/bp_member_type/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:53:\"index.php?bp_member_type=$matches[1]&feed=$matches[2]\";s:53:\"index.php/bp_member_type/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?bp_member_type=$matches[1]&paged=$matches[2]\";s:35:\"index.php/bp_member_type/([^/]+)/?$\";s:36:\"index.php?bp_member_type=$matches[1]\";s:46:\"index.php/gce_feed/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"index.php/gce_feed/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:84:\"index.php/gce_feed/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:79:\"index.php/gce_feed/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"index.php/gce_feed/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"index.php/gce_feed/([^/]+)/trackback/?$\";s:35:\"index.php?gce_feed=$matches[1]&tb=1\";s:47:\"index.php/gce_feed/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?gce_feed=$matches[1]&paged=$matches[2]\";s:54:\"index.php/gce_feed/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?gce_feed=$matches[1]&cpage=$matches[2]\";s:44:\"index.php/gce_feed/([^/]+)/um-api(/(.*))?/?$\";s:49:\"index.php?gce_feed=$matches[1]&um-api=$matches[3]\";s:50:\"index.php/gce_feed/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:61:\"index.php/gce_feed/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:39:\"index.php/gce_feed/([^/]+)(/[0-9]+)?/?$\";s:47:\"index.php?gce_feed=$matches[1]&page=$matches[2]\";s:35:\"index.php/gce_feed/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"index.php/gce_feed/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"index.php/gce_feed/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"index.php/gce_feed/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"index.php/gce_feed/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";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:50:\"index.php/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:45:\"index.php/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:30:\"index.php/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"index.php/um-api(/(.*))?/?$\";s:29:\"index.php?&um-api=$matches[2]\";s:59:\"index.php/comments/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:54:\"index.php/comments/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"index.php/comments/um-api(/(.*))?/?$\";s:29:\"index.php?&um-api=$matches[2]\";s:62:\"index.php/search/(.+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:57:\"index.php/search/(.+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:42:\"index.php/search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:39:\"index.php/search/(.+)/um-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&um-api=$matches[3]\";s:24:\"index.php/search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:65:\"index.php/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:60:\"index.php/author/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:45:\"index.php/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:42:\"index.php/author/([^/]+)/um-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&um-api=$matches[3]\";s:27:\"index.php/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:87:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:67:\"index.php/([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:64:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/um-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&um-api=$matches[5]\";s:49:\"index.php/([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:74:\"index.php/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:69:\"index.php/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:54:\"index.php/([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:51:\"index.php/([0-9]{4})/([0-9]{1,2})/um-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&um-api=$matches[4]\";s:36:\"index.php/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:61:\"index.php/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:56:\"index.php/([0-9]{4})/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:41:\"index.php/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:38:\"index.php/([0-9]{4})/um-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&um-api=$matches[3]\";s:23:\"index.php/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:68:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:78:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:106:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:101:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[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:67:\"index.php/([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:95:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:90:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:75:\"index.php/([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:82:\"index.php/([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:72:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/um-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&um-api=$matches[6]\";s:72:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:83:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:67:\"index.php/([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:57:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:67:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:95:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:90:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[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:74:\"index.php/([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:61:\"index.php/([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:48:\"index.php/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:37:\"index.php/.?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/.?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"index.php/.?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/.?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"index.php/(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:58:\"index.php/(.?.+?)/feed/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:53:\"index.php/(.?.+?)/(feed|rdf|rss|rss2|atom|podcast)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:38:\"index.php/(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:45:\"index.php/(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:35:\"index.php/(.?.+?)/um-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&um-api=$matches[3]\";s:41:\"index.php/.?.+?/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:52:\"index.php/.?.+?/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:30:\"index.php/(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(29068,'_transient_timeout_jpp_li_95961a7b44d3f0bb0f4f7acdd69f5cda','1444183298','no'),(28027,'_transient_jpp_li_6813029f0ba7543cc3f5da126777000b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (31.220.45.6)\";s:17:\"seconds_remaining\";i:3071;s:16:\"blocked_attempts\";s:3:\"257\";s:6:\"expire\";i:1444010176;}','no'),(27856,'_transient_jpp_li_0e7971b3ff5557ae261890619c33d92c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (77.244.254.228)\";s:17:\"seconds_remaining\";i:2387;s:16:\"blocked_attempts\";s:3:\"255\";s:6:\"expire\";i:1443976434;}','no'),(27855,'_transient_timeout_jpp_li_0e7971b3ff5557ae261890619c33d92c','1443976434','no'),(26949,'_transient_timeout_jpp_li_64bdecfb9f0d0cba435b2eda79a3f0ba','1443800856','no'),(26950,'_transient_jpp_li_64bdecfb9f0d0cba435b2eda79a3f0ba','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (5.135.158.101)\";s:17:\"seconds_remaining\";i:2503;s:16:\"blocked_attempts\";s:3:\"234\";s:6:\"expire\";i:1443800856;}','no'),(26728,'_transient_timeout_jpp_li_261eaf22311e310875a73dd86f0fdb9e','1443750553','no'),(13782,'_transient_cff_timeline_event_json_747319162057214','{\"description\":\"Good Morning Beloit! Your calls to 1 302 202 1098. Access code: 8547351. All Beloit, all conversations accepted! 5 phone lines open, 10 video hangout\\/gmail\\/google+ lines open as well!\",\"end_time\":\"2015-08-24T09:00:00-0500\",\"is_date_only\":false,\"location\":\"Beloit, WI\",\"name\":\"The Beloit Podcast Monday Morning Live!\",\"owner\":{\"name\":\"The Beloit Podcast\",\"category\":\"Education Website\",\"id\":\"876720959038087\"},\"privacy\":\"OPEN\",\"start_time\":\"2015-08-24T07:00:00-0500\",\"timezone\":\"America\\/Chicago\",\"updated_time\":\"2015-08-23T21:29:00+0000\",\"venue\":{\"city\":\"Beloit\",\"country\":\"United States\",\"latitude\":42.508333333333,\"longitude\":-89.031666666667,\"state\":\"WI\",\"zip\":\"\\u003C\\u003Cnot-applicable>>\"},\"id\":\"747319162057214\"}','no'),(29547,'_site_transient_timeout_browser_522170fb17b3dafd4d8c57bfe7d2c613','1444846062','yes'),(29548,'_site_transient_browser_522170fb17b3dafd4d8c57bfe7d2c613','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"45.0.2454.101\";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'),(27038,'_transient_timeout_jpp_li_341433e81779d41554fa99dfe1e828af','1443842934','no'),(29651,'_transient_timeout_jpp_li_073c6ad5a1b00b5ed896cc596491fef9','1444249520','no'),(7985,'wpb2d-init-errors','','no'),(7987,'wpb2d-premium-extensions','a:0:{}','no'),(8405,'widget_su_footer_autolinks','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(8406,'widget_gadash_frontend_widget','a:3:{i:1;a:0:{}i:2;a:5:{s:5:\"title\";s:22:\"Google Analytics Stats\";s:6:\"period\";s:8:\"7daysAgo\";s:7:\"display\";s:1:\"1\";s:12:\"give_credits\";s:1:\"1\";s:6:\"anonim\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(8407,'widget_gce_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(8408,'widget_su_siloed_terms','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(29883,'_transient_jpp_li_9eabbecf5760170de26864d1679fccc7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (194.150.168.79)\";s:17:\"seconds_remaining\";i:900;s:16:\"blocked_attempts\";s:3:\"298\";s:6:\"expire\";i:1444282618;}','no'),(28402,'_transient_jpp_li_3f32aeec6af5a3ccafb49e73ab19dad1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (176.31.51.199)\";s:17:\"seconds_remaining\";i:2523;s:16:\"blocked_attempts\";s:3:\"273\";s:6:\"expire\";i:1444092338;}','no'),(28318,'_transient_timeout_jpp_li_1309ec8a2e1a1a695f2dc522f3250ceb','1444076917','no'),(28176,'_transient_timeout_jpp_li_25ba658a9043b18f571ea2023e04c896','1444041211','no'),(30090,'_transient_jpp_li_97138b2839f1b09aee22c0cd8f48bdcf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (120.29.217.51)\";s:17:\"seconds_remaining\";i:3358;s:16:\"blocked_attempts\";s:3:\"301\";s:6:\"expire\";i:1444305578;}','no'),(28178,'_transient_jpp_li_25ba658a9043b18f571ea2023e04c896','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (89.187.142.208)\";s:17:\"seconds_remaining\";i:1514;s:16:\"blocked_attempts\";s:3:\"262\";s:6:\"expire\";i:1444041211;}','no'),(26698,'_transient_timeout_jpp_li_2d1571274e2f21069a2a105bd0dd505b','1443747011','no'),(26699,'_transient_jpp_li_2d1571274e2f21069a2a105bd0dd505b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (185.29.8.218)\";s:17:\"seconds_remaining\";i:2835;s:16:\"blocked_attempts\";s:3:\"220\";s:6:\"expire\";i:1443747011;}','no'),(28974,'_transient_timeout_jpp_li_ca2dfa9fd9cba6aa43e1e3dd106954e6','1444164269','no'),(26938,'_transient_timeout_jpp_li_3cf734d7b40feb2ebc4fdd6cdfc9c24a','1443797247','no'),(26939,'_transient_jpp_li_3cf734d7b40feb2ebc4fdd6cdfc9c24a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (194.150.168.95)\";s:17:\"seconds_remaining\";i:869;s:16:\"blocked_attempts\";s:3:\"233\";s:6:\"expire\";i:1443797247;}','no'),(8428,'_transient_all_the_cool_cats','1','yes'),(27065,'_transient_timeout_jpp_li_412825c720fe7bba787196f2f434f3c8','1443848731','no'),(27066,'_transient_jpp_li_412825c720fe7bba787196f2f434f3c8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (91.213.8.84)\";s:17:\"seconds_remaining\";i:1727;s:16:\"blocked_attempts\";s:3:\"244\";s:6:\"expire\";i:1443848731;}','no'),(28564,'_transient_jpp_li_9e8f14350caebd2132b1d55cdb7b02ee','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (91.109.247.173)\";s:17:\"seconds_remaining\";i:3029;s:16:\"blocked_attempts\";s:3:\"276\";s:6:\"expire\";i:1444127441;}','no'),(28401,'_transient_timeout_jpp_li_3f32aeec6af5a3ccafb49e73ab19dad1','1444092338','no'),(8616,'widget_widget_twentyfourteen_ephemera','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(9093,'jetpack_protect_key','0ad9cbf4eb8d1809f778e0414a4a1acfd641df98','yes'),(8619,'_transient_twentyfourteen_category_count','1','yes'),(8648,'theme_mods_selma','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:15;}s:16:\"background_color\";s:6:\"000000\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";}','yes'),(8649,'theme_switched_via_customizer','','yes'),(9067,'jetpack_available_modules','a:1:{s:5:\"3.6.1\";a:36:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:9:\"site-icon\";s:3:\"3.2\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";}}','yes'),(9068,'jetpack_security_report','a:0:{}','yes'),(9074,'jetpack_log','a:10:{i:0;a:4:{s:4:\"time\";i:1440293582;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:4:{s:4:\"time\";i:1440293894;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:97999942;s:4:\"code\";s:9:\"authorize\";}i:2;a:5:{s:4:\"time\";i:1440295962;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:97999942;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:6:\"manage\";}i:3;a:5:{s:4:\"time\";i:1440295964;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:97999942;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:13:\"subscriptions\";}i:4;a:5:{s:4:\"time\";i:1440295964;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:97999942;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:19:\"gravatar-hovercards\";}i:5;a:5:{s:4:\"time\";i:1440295964;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:97999942;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:8:\"carousel\";}i:6;a:5:{s:4:\"time\";i:1440295964;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:97999942;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:6:\"photon\";}i:7;a:5:{s:4:\"time\";i:1440295964;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:97999942;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:13:\"related-posts\";}i:8;a:5:{s:4:\"time\";i:1440295965;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:97999942;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:3:\"sso\";}i:9;a:5:{s:4:\"time\";i:1440296108;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:97999942;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:5:\"likes\";}}','no'),(9075,'jetpack_private_options','a:3:{s:8:\"register\";s:76:\"Qvj5KvowRR7ZztrrIqZe9JvNzX6EgpAd:0wDDFXFRTRmCjmR1ANrSwCrJMzSDnD2L:1440294182\";s:10:\"blog_token\";s:65:\"q#GR!setkTddEpb5cJhPTmTUnA9Upciw.JLt&Rg(TB^AmfUBti*Gf8LDd^O0b@N3n\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"H8&4vO3Q3297mvrMqKLFJATLgj&g^Rf1.RGwd157uwP!vt0(F%0m7s9di#x@nC215.1\";}}','yes'),(9086,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:0;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(9087,'jetpack_active_modules','a:25:{i:0;s:18:\"after-the-deadline\";i:1;s:20:\"custom-content-types\";i:2;s:10:\"custom-css\";i:3;s:21:\"enhanced-distribution\";i:4;s:19:\"gravatar-hovercards\";i:5;s:8:\"json-api\";i:6;s:5:\"latex\";i:7;s:5:\"notes\";i:8;s:10:\"omnisearch\";i:9;s:13:\"post-by-email\";i:10;s:7:\"protect\";i:11;s:9:\"publicize\";i:12;s:10:\"shortcodes\";i:13;s:10:\"shortlinks\";i:14;s:5:\"stats\";i:15;s:13:\"subscriptions\";i:17;s:18:\"verification-tools\";i:18;s:17:\"widget-visibility\";i:19;s:7:\"widgets\";i:20;s:6:\"manage\";i:21;s:8:\"carousel\";i:22;s:6:\"photon\";i:23;s:13:\"related-posts\";i:24;s:3:\"sso\";i:25;s:5:\"likes\";}','yes'),(9101,'trusted_ip_header','HTTP_X_FORWARDED_FOR','yes'),(30239,'_transient_feed_mod_da8c757f762dcd1ec67339593414ea85','1444330673','no'),(30207,'_transient_timeout_jpp_li_75a511ec7ff32f09d42200fd6925d59e','1444331217','no'),(29612,'_transient_is_multi_author','0','yes'),(29613,'_transient_selma_categories','1','yes'),(29652,'_transient_jpp_li_073c6ad5a1b00b5ed896cc596491fef9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (82.223.30.165)\";s:17:\"seconds_remaining\";i:801;s:16:\"blocked_attempts\";s:3:\"293\";s:6:\"expire\";i:1444249520;}','no'),(29653,'_transient_timeout_jpp_li_d49b09eeea2eddbc732df9fdb15d5bdd','1444249973','no'),(29654,'_transient_jpp_li_d49b09eeea2eddbc732df9fdb15d5bdd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (92.222.28.243)\";s:17:\"seconds_remaining\";i:1254;s:16:\"blocked_attempts\";s:3:\"294\";s:6:\"expire\";i:1444249973;}','no'),(29668,'_transient_timeout_jpp_li_a7017ed987a35cdf3d91ef64e1b2828b','1444250994','no'),(29669,'_transient_jpp_li_a7017ed987a35cdf3d91ef64e1b2828b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (92.222.113.177)\";s:17:\"seconds_remaining\";i:707;s:16:\"blocked_attempts\";s:3:\"295\";s:6:\"expire\";i:1444250994;}','no'),(29784,'_transient_timeout_jpp_li_134852fd05d13047da28fadb92bd7e2a','1444270241','no'),(29785,'_transient_jpp_li_134852fd05d13047da28fadb92bd7e2a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (171.25.193.131)\";s:17:\"seconds_remaining\";i:1391;s:16:\"blocked_attempts\";s:3:\"297\";s:6:\"expire\";i:1444270241;}','no'),(4011,'ngfb_options','a:424:{s:16:\"options_filtered\";s:1:\"1\";s:15:\"options_version\";s:7:\"ngfb348\";s:15:\"schema_desc_len\";s:3:\"250\";s:19:\"schema_website_json\";i:1;s:21:\"schema_publisher_json\";i:1;s:18:\"schema_author_json\";i:1;s:15:\"schema_logo_url\";s:0:\"\";s:12:\"seo_desc_len\";s:3:\"156\";s:15:\"seo_author_name\";s:12:\"display_name\";s:17:\"seo_def_author_id\";s:1:\"0\";s:23:\"seo_def_author_on_index\";i:0;s:24:\"seo_def_author_on_search\";i:0;s:16:\"seo_author_field\";s:5:\"gplus\";s:17:\"seo_publisher_url\";s:0:\"\";s:16:\"fb_publisher_url\";s:45:\"https://www.facebook.com/thebeloitpod?fref=ts\";s:9:\"fb_admins\";s:10:\"Reese Wood\";s:9:\"fb_app_id\";s:15:\"100686906948604\";s:7:\"fb_lang\";s:5:\"en_US\";s:22:\"instgram_publisher_url\";s:0:\"\";s:22:\"linkedin_publisher_url\";s:0:\"\";s:21:\"myspace_publisher_url\";s:0:\"\";s:12:\"og_site_name\";s:0:\"\";s:19:\"og_site_description\";s:53:\"Beloits people and places; past, present, and future.\";s:14:\"og_art_section\";s:9:\"Education\";s:12:\"og_img_width\";s:3:\"600\";s:13:\"og_img_height\";s:3:\"600\";s:11:\"og_img_crop\";i:1;s:13:\"og_img_crop_x\";s:6:\"center\";s:13:\"og_img_crop_y\";s:6:\"center\";s:10:\"og_img_max\";s:1:\"1\";s:10:\"og_vid_max\";s:1:\"1\";s:12:\"og_vid_https\";i:1;s:15:\"og_vid_prev_img\";i:0;s:16:\"og_vid_html_type\";s:1:\"1\";s:17:\"og_def_img_id_pre\";s:2:\"wp\";s:13:\"og_def_img_id\";s:0:\"\";s:14:\"og_def_img_url\";s:0:\"\";s:19:\"og_def_img_on_index\";i:1;s:20:\"og_def_img_on_author\";i:0;s:20:\"og_def_img_on_search\";i:0;s:14:\"og_def_vid_url\";s:0:\"\";s:19:\"og_def_vid_on_index\";i:1;s:20:\"og_def_vid_on_author\";i:0;s:20:\"og_def_vid_on_search\";i:0;s:16:\"og_def_author_id\";s:1:\"0\";s:22:\"og_def_author_on_index\";i:0;s:23:\"og_def_author_on_search\";i:0;s:11:\"og_ngg_tags\";i:0;s:19:\"og_page_parent_tags\";i:0;s:17:\"og_page_title_tag\";i:0;s:15:\"og_author_field\";s:8:\"facebook\";s:18:\"og_author_fallback\";i:0;s:12:\"og_title_sep\";s:7:\"–\";s:12:\"og_title_len\";s:2:\"70\";s:11:\"og_desc_len\";s:3:\"300\";s:16:\"og_desc_hashtags\";s:1:\"3\";s:13:\"og_desc_strip\";i:0;s:11:\"og_desc_alt\";i:1;s:16:\"rp_publisher_url\";s:0:\"\";s:14:\"rp_author_name\";s:12:\"display_name\";s:12:\"rp_img_width\";s:3:\"600\";s:13:\"rp_img_height\";s:3:\"600\";s:11:\"rp_img_crop\";i:1;s:13:\"rp_img_crop_x\";s:6:\"center\";s:13:\"rp_img_crop_y\";s:6:\"center\";s:13:\"rp_dom_verify\";s:0:\"\";s:9:\"tc_enable\";i:1;s:7:\"tc_site\";s:13:\"@thebeloitpod\";s:11:\"tc_desc_len\";s:3:\"200\";s:12:\"tc_sum_width\";s:3:\"300\";s:13:\"tc_sum_height\";s:3:\"300\";s:11:\"tc_sum_crop\";i:1;s:13:\"tc_sum_crop_x\";s:6:\"center\";s:13:\"tc_sum_crop_y\";s:6:\"center\";s:15:\"tc_lrgimg_width\";s:3:\"600\";s:16:\"tc_lrgimg_height\";s:3:\"600\";s:14:\"tc_lrgimg_crop\";i:0;s:16:\"tc_lrgimg_crop_x\";s:6:\"center\";s:16:\"tc_lrgimg_crop_y\";s:6:\"center\";s:14:\"tc_photo_width\";s:3:\"600\";s:15:\"tc_photo_height\";s:3:\"600\";s:13:\"tc_photo_crop\";i:0;s:15:\"tc_photo_crop_x\";s:6:\"center\";s:15:\"tc_photo_crop_y\";s:6:\"center\";s:10:\"tc_gal_min\";s:1:\"4\";s:12:\"tc_gal_width\";s:3:\"300\";s:13:\"tc_gal_height\";s:3:\"300\";s:11:\"tc_gal_crop\";i:0;s:13:\"tc_gal_crop_x\";s:6:\"center\";s:13:\"tc_gal_crop_y\";s:6:\"center\";s:13:\"tc_prod_width\";s:3:\"300\";s:14:\"tc_prod_height\";s:3:\"300\";s:12:\"tc_prod_crop\";i:1;s:14:\"tc_prod_crop_x\";s:6:\"center\";s:14:\"tc_prod_crop_y\";s:6:\"center\";s:14:\"tc_prod_labels\";s:1:\"2\";s:18:\"tc_prod_def_label2\";s:8:\"Location\";s:17:\"tc_prod_def_data2\";s:7:\"Unknown\";s:19:\"add_link_rel_author\";i:1;s:22:\"add_link_rel_publisher\";i:1;s:27:\"add_meta_property_fb:admins\";i:1;s:27:\"add_meta_property_fb:app_id\";i:1;s:27:\"add_meta_property_og:locale\";i:1;s:30:\"add_meta_property_og:site_name\";i:1;s:32:\"add_meta_property_og:description\";i:1;s:26:\"add_meta_property_og:title\";i:1;s:25:\"add_meta_property_og:type\";i:1;s:24:\"add_meta_property_og:url\";i:1;s:26:\"add_meta_property_og:image\";i:1;s:37:\"add_meta_property_og:image:secure_url\";i:1;s:32:\"add_meta_property_og:image:width\";i:1;s:33:\"add_meta_property_og:image:height\";i:1;s:30:\"add_meta_property_og:video:url\";i:1;s:37:\"add_meta_property_og:video:secure_url\";i:1;s:32:\"add_meta_property_og:video:width\";i:1;s:33:\"add_meta_property_og:video:height\";i:1;s:31:\"add_meta_property_og:video:type\";i:1;s:32:\"add_meta_property_article:author\";i:1;s:35:\"add_meta_property_article:publisher\";i:1;s:40:\"add_meta_property_article:published_time\";i:1;s:39:\"add_meta_property_article:modified_time\";i:1;s:33:\"add_meta_property_article:section\";i:1;s:29:\"add_meta_property_article:tag\";i:1;s:38:\"add_meta_property_product:price:amount\";i:1;s:40:\"add_meta_property_product:price:currency\";i:1;s:38:\"add_meta_property_product:availability\";i:1;s:20:\"add_meta_name_author\";i:1;s:23:\"add_meta_name_canonical\";i:0;s:25:\"add_meta_name_description\";i:1;s:23:\"add_meta_name_generator\";i:1;s:29:\"add_meta_name_p:domain_verify\";i:1;s:26:\"add_meta_name_twitter:card\";i:1;s:29:\"add_meta_name_twitter:creator\";i:1;s:28:\"add_meta_name_twitter:domain\";i:1;s:26:\"add_meta_name_twitter:site\";i:1;s:27:\"add_meta_name_twitter:title\";i:1;s:33:\"add_meta_name_twitter:description\";i:1;s:27:\"add_meta_name_twitter:image\";i:1;s:33:\"add_meta_name_twitter:image:width\";i:1;s:34:\"add_meta_name_twitter:image:height\";i:1;s:28:\"add_meta_name_twitter:image0\";i:1;s:28:\"add_meta_name_twitter:image1\";i:1;s:28:\"add_meta_name_twitter:image2\";i:1;s:28:\"add_meta_name_twitter:image3\";i:1;s:28:\"add_meta_name_twitter:player\";i:1;s:34:\"add_meta_name_twitter:player:width\";i:1;s:35:\"add_meta_name_twitter:player:height\";i:1;s:27:\"add_meta_name_twitter:data1\";i:1;s:28:\"add_meta_name_twitter:label1\";i:1;s:27:\"add_meta_name_twitter:data2\";i:1;s:28:\"add_meta_name_twitter:label2\";i:1;s:27:\"add_meta_name_twitter:data3\";i:1;s:28:\"add_meta_name_twitter:label3\";i:1;s:27:\"add_meta_name_twitter:data4\";i:1;s:28:\"add_meta_name_twitter:label4\";i:1;s:22:\"add_meta_itemprop_name\";i:1;s:26:\"add_meta_itemprop_headline\";i:1;s:31:\"add_meta_itemprop_datepublished\";i:1;s:29:\"add_meta_itemprop_description\";i:1;s:21:\"add_meta_itemprop_url\";i:1;s:23:\"add_meta_itemprop_image\";i:1;s:14:\"plugin_version\";s:7:\"8.6.4.4\";s:15:\"plugin_ngfb_tid\";s:0:\"\";s:16:\"plugin_show_opts\";s:5:\"basic\";s:15:\"plugin_preserve\";i:0;s:12:\"plugin_debug\";i:0;s:17:\"plugin_cache_info\";i:0;s:17:\"plugin_check_head\";i:1;s:19:\"plugin_filter_title\";i:1;s:21:\"plugin_filter_content\";i:0;s:21:\"plugin_filter_excerpt\";i:0;s:18:\"plugin_filter_lang\";i:1;s:17:\"plugin_shortcodes\";i:1;s:14:\"plugin_widgets\";i:1;s:22:\"plugin_auto_img_resize\";i:1;s:23:\"plugin_ignore_small_img\";i:1;s:19:\"plugin_page_excerpt\";i:1;s:16:\"plugin_page_tags\";i:1;s:19:\"plugin_gravatar_api\";i:1;s:21:\"plugin_slideshare_api\";i:1;s:16:\"plugin_vimeo_api\";i:1;s:17:\"plugin_wistia_api\";i:1;s:18:\"plugin_youtube_api\";i:1;s:17:\"plugin_cf_img_url\";s:17:\"_format_image_url\";s:17:\"plugin_cf_vid_url\";s:17:\"_format_video_url\";s:19:\"plugin_cf_vid_embed\";s:19:\"_format_video_embed\";s:18:\"plugin_add_to_post\";i:1;s:18:\"plugin_add_to_page\";i:1;s:22:\"plugin_add_to_taxonomy\";i:1;s:18:\"plugin_add_to_user\";i:1;s:24:\"plugin_add_to_attachment\";i:1;s:23:\"plugin_object_cache_exp\";s:5:\"86400\";s:21:\"plugin_file_cache_exp\";s:1:\"0\";s:19:\"plugin_verify_certs\";i:0;s:16:\"plugin_shortener\";s:4:\"none\";s:18:\"plugin_min_shorten\";s:2:\"22\";s:18:\"plugin_bitly_login\";s:0:\"\";s:20:\"plugin_bitly_api_key\";s:0:\"\";s:21:\"plugin_google_api_key\";s:0:\"\";s:21:\"plugin_google_shorten\";i:0;s:17:\"plugin_cm_fb_name\";s:8:\"facebook\";s:18:\"plugin_cm_fb_label\";s:12:\"Facebook URL\";s:20:\"plugin_cm_fb_enabled\";i:1;s:17:\"plugin_cm_gp_name\";s:5:\"gplus\";s:18:\"plugin_cm_gp_label\";s:11:\"Google+ URL\";s:20:\"plugin_cm_gp_enabled\";i:1;s:23:\"plugin_cm_instgram_name\";s:9:\"instagram\";s:24:\"plugin_cm_instgram_label\";s:13:\"Instagram URL\";s:26:\"plugin_cm_instgram_enabled\";i:1;s:23:\"plugin_cm_linkedin_name\";s:8:\"linkedin\";s:24:\"plugin_cm_linkedin_label\";s:12:\"LinkedIn URL\";s:26:\"plugin_cm_linkedin_enabled\";i:1;s:22:\"plugin_cm_myspace_name\";s:7:\"myspace\";s:23:\"plugin_cm_myspace_label\";s:11:\"MySpace URL\";s:25:\"plugin_cm_myspace_enabled\";i:1;s:18:\"plugin_cm_pin_name\";s:9:\"pinterest\";s:19:\"plugin_cm_pin_label\";s:13:\"Pinterest URL\";s:21:\"plugin_cm_pin_enabled\";i:1;s:21:\"plugin_cm_tumblr_name\";s:6:\"tumblr\";s:22:\"plugin_cm_tumblr_label\";s:10:\"Tumblr URL\";s:24:\"plugin_cm_tumblr_enabled\";i:1;s:22:\"plugin_cm_twitter_name\";s:7:\"twitter\";s:23:\"plugin_cm_twitter_label\";s:17:\"Twitter @username\";s:25:\"plugin_cm_twitter_enabled\";i:1;s:17:\"plugin_cm_yt_name\";s:7:\"youtube\";s:18:\"plugin_cm_yt_label\";s:19:\"YouTube Channel URL\";s:20:\"plugin_cm_yt_enabled\";i:1;s:20:\"plugin_cm_skype_name\";s:5:\"skype\";s:21:\"plugin_cm_skype_label\";s:14:\"Skype Username\";s:23:\"plugin_cm_skype_enabled\";i:1;s:14:\"wp_cm_aim_name\";s:3:\"aim\";s:15:\"wp_cm_aim_label\";s:3:\"AIM\";s:17:\"wp_cm_aim_enabled\";i:1;s:17:\"wp_cm_jabber_name\";s:6:\"jabber\";s:18:\"wp_cm_jabber_label\";s:11:\"Google Talk\";s:20:\"wp_cm_jabber_enabled\";i:1;s:14:\"wp_cm_yim_name\";s:3:\"yim\";s:15:\"wp_cm_yim_label\";s:8:\"Yahoo IM\";s:17:\"wp_cm_yim_enabled\";i:1;s:19:\"plugin_add_to_forum\";i:1;s:19:\"plugin_add_to_topic\";i:1;s:19:\"plugin_add_to_reply\";i:1;s:21:\"plugin_add_to_channel\";i:1;s:13:\"fb_on_content\";i:1;s:13:\"fb_on_excerpt\";i:0;s:13:\"fb_on_sidebar\";i:0;s:16:\"fb_on_admin_edit\";i:1;s:8:\"fb_order\";s:1:\"1\";s:13:\"fb_script_loc\";s:6:\"header\";s:9:\"fb_button\";s:4:\"like\";s:9:\"fb_markup\";s:5:\"xfbml\";s:7:\"fb_send\";i:1;s:9:\"fb_layout\";s:12:\"button_count\";s:7:\"fb_font\";s:5:\"arial\";s:13:\"fb_show_faces\";i:0;s:14:\"fb_colorscheme\";s:5:\"light\";s:9:\"fb_action\";s:4:\"like\";s:7:\"fb_type\";s:12:\"button_count\";s:13:\"gp_on_content\";i:1;s:13:\"gp_on_excerpt\";i:0;s:13:\"gp_on_sidebar\";i:0;s:16:\"gp_on_admin_edit\";i:1;s:8:\"gp_order\";s:1:\"2\";s:13:\"gp_script_loc\";s:6:\"header\";s:7:\"gp_lang\";s:5:\"en-US\";s:9:\"gp_action\";s:7:\"plusone\";s:7:\"gp_size\";s:6:\"medium\";s:13:\"gp_annotation\";s:6:\"bubble\";s:11:\"gp_expandto\";s:4:\"none\";s:18:\"twitter_on_content\";i:1;s:18:\"twitter_on_excerpt\";i:0;s:18:\"twitter_on_sidebar\";i:0;s:21:\"twitter_on_admin_edit\";i:1;s:13:\"twitter_order\";s:1:\"3\";s:18:\"twitter_script_loc\";s:6:\"header\";s:12:\"twitter_lang\";s:2:\"en\";s:13:\"twitter_count\";s:10:\"horizontal\";s:15:\"twitter_caption\";s:5:\"title\";s:15:\"twitter_cap_len\";s:3:\"140\";s:12:\"twitter_size\";s:6:\"medium\";s:11:\"twitter_via\";i:1;s:18:\"twitter_rel_author\";i:1;s:11:\"twitter_dnt\";i:1;s:14:\"pin_on_content\";i:0;s:14:\"pin_on_excerpt\";i:0;s:14:\"pin_on_sidebar\";i:0;s:17:\"pin_on_admin_edit\";i:1;s:9:\"pin_order\";s:1:\"4\";s:14:\"pin_script_loc\";s:6:\"footer\";s:15:\"pin_button_lang\";s:2:\"en\";s:16:\"pin_button_shape\";s:4:\"rect\";s:16:\"pin_button_color\";s:4:\"gray\";s:17:\"pin_button_height\";s:5:\"small\";s:16:\"pin_count_layout\";s:6:\"beside\";s:11:\"pin_use_img\";i:1;s:13:\"pin_img_width\";s:3:\"600\";s:14:\"pin_img_height\";s:3:\"600\";s:12:\"pin_img_crop\";i:0;s:14:\"pin_img_crop_x\";s:6:\"center\";s:14:\"pin_img_crop_y\";s:6:\"center\";s:11:\"pin_caption\";s:7:\"excerpt\";s:11:\"pin_cap_len\";s:3:\"400\";s:19:\"linkedin_on_content\";i:0;s:19:\"linkedin_on_excerpt\";i:0;s:19:\"linkedin_on_sidebar\";i:0;s:22:\"linkedin_on_admin_edit\";i:1;s:14:\"linkedin_order\";s:1:\"5\";s:19:\"linkedin_script_loc\";s:6:\"header\";s:16:\"linkedin_counter\";s:5:\"right\";s:17:\"linkedin_showzero\";i:1;s:17:\"buffer_on_content\";i:0;s:17:\"buffer_on_excerpt\";i:0;s:17:\"buffer_on_sidebar\";i:0;s:20:\"buffer_on_admin_edit\";i:1;s:12:\"buffer_order\";s:1:\"6\";s:17:\"buffer_script_loc\";s:6:\"footer\";s:12:\"buffer_count\";s:10:\"horizontal\";s:16:\"buffer_img_width\";s:3:\"600\";s:17:\"buffer_img_height\";s:3:\"600\";s:15:\"buffer_img_crop\";i:1;s:17:\"buffer_img_crop_x\";s:6:\"center\";s:17:\"buffer_img_crop_y\";s:6:\"center\";s:14:\"buffer_caption\";s:5:\"title\";s:14:\"buffer_cap_len\";s:3:\"140\";s:10:\"buffer_via\";i:1;s:17:\"reddit_on_content\";i:0;s:17:\"reddit_on_excerpt\";i:0;s:17:\"reddit_on_sidebar\";i:0;s:20:\"reddit_on_admin_edit\";i:1;s:12:\"reddit_order\";s:1:\"7\";s:11:\"reddit_type\";s:11:\"static-wide\";s:19:\"managewp_on_content\";i:0;s:19:\"managewp_on_excerpt\";i:0;s:19:\"managewp_on_sidebar\";i:0;s:22:\"managewp_on_admin_edit\";i:1;s:14:\"managewp_order\";s:1:\"8\";s:13:\"managewp_type\";s:5:\"small\";s:18:\"stumble_on_content\";i:0;s:18:\"stumble_on_excerpt\";i:0;s:18:\"stumble_on_sidebar\";i:0;s:21:\"stumble_on_admin_edit\";i:1;s:13:\"stumble_order\";s:1:\"9\";s:18:\"stumble_script_loc\";s:6:\"footer\";s:13:\"stumble_badge\";s:1:\"1\";s:17:\"tumblr_on_content\";i:0;s:17:\"tumblr_on_excerpt\";i:0;s:17:\"tumblr_on_sidebar\";i:0;s:20:\"tumblr_on_admin_edit\";i:1;s:12:\"tumblr_order\";s:2:\"10\";s:17:\"tumblr_script_loc\";s:6:\"footer\";s:19:\"tumblr_button_style\";s:7:\"share_1\";s:15:\"tumblr_desc_len\";s:3:\"300\";s:16:\"tumblr_img_width\";s:3:\"600\";s:17:\"tumblr_img_height\";s:3:\"600\";s:15:\"tumblr_img_crop\";i:0;s:17:\"tumblr_img_crop_x\";s:6:\"center\";s:17:\"tumblr_img_crop_y\";s:6:\"center\";s:14:\"tumblr_caption\";s:7:\"excerpt\";s:14:\"tumblr_cap_len\";s:3:\"400\";s:16:\"buttons_on_index\";i:0;s:16:\"buttons_on_front\";i:0;s:19:\"buttons_add_to_post\";i:1;s:19:\"buttons_add_to_page\";i:1;s:25:\"buttons_add_to_attachment\";i:1;s:19:\"buttons_pos_content\";s:6:\"bottom\";s:19:\"buttons_pos_excerpt\";s:6:\"bottom\";s:22:\"buttons_use_social_css\";i:1;s:26:\"buttons_enqueue_social_css\";i:1;s:19:\"buttons_css_sharing\";s:2930:\"/* Save an empty style text box to reload the default example styles.\r\n * These styles are provided as examples only - modifications may be \r\n * necessary to customize the layout for your website. Social sharing\r\n * buttons can be aligned vertically, horizontally, floated, etc.\r\n */\r\n\r\n/* make sure the Facebook flyout does not get clipped */\r\n#page { overflow:visible; }\r\n\r\n/* The .ngfb-buttons class is common to all other button classes\r\n * (excerpt, content, shortcode, widget). Any change made to this\r\n * class will affect all other button layouts.\r\n */\r\n.ngfb-buttons img { \r\n margin:none;\r\n border:none;\r\n}\r\n\r\n.ngfb-buttons img:hover {\r\n border:none;\r\n}\r\n\r\n.ngfb-buttons iframe { \r\n margin:0;\r\n max-width:none;\r\n}\r\n\r\n.ngfb-buttons > div, /* default uses small buttons */\r\n.ngfb-preset-small_share_count .ngfb-buttons > div { \r\n display:inline-block;\r\n vertical-align:bottom;\r\n text-align:left;\r\n line-height:20px;\r\n padding:0;\r\n margin:5px;\r\n width:100px;\r\n height:20px;\r\n}\r\n\r\n.ngfb-preset-large_share_vertical .ngfb-buttons > div,\r\n.ngfb-preset-large_share_vertical .ngfb-buttons > div[class*=\"-button\"] { \r\n line-height:65px;\r\n width:60px;\r\n height:65px;\r\n}\r\n\r\n.ngfb-buttons div.facebook-button,\r\n.ngfb-preset-small_share_count\r\n .ngfb-buttons div.facebook-button { width:139px; }\r\n\r\n.ngfb-buttons div.fb-share-button,\r\n.ngfb-preset-small_share_count \r\n .ngfb-buttons div.fb-share-button { width:105px; }\r\n\r\n.ngfb-buttons div.fb-share-button span {\r\n display:inline-block !important;\r\n vertical-align:middle !important;\r\n}\r\n\r\n.ngfb-buttons div.gplus-button,\r\n.ngfb-preset-small_share_count \r\n .ngfb-buttons div.gplus-button { width:99px; }\r\n\r\n.ngfb-buttons div.gplusone-button,\r\n.ngfb-preset-small_share_count \r\n .ngfb-buttons div.gplusone-button { width:75px; }\r\n\r\n.ngfb-buttons div.twitter-button,\r\n.ngfb-preset-small_share_count \r\n .ngfb-buttons div.twitter-button { width:89px; }\r\n\r\n.ngfb-buttons div.linkedin-button,\r\n.ngfb-preset-small_share_count \r\n .ngfb-buttons div.linkedin-button { width:110px; }\r\n\r\n.ngfb-buttons div.pinterest-button,\r\n.ngfb-preset-small_share_count \r\n .ngfb-buttons div.pinterest-button { width:78px; }\r\n.ngfb-preset-large_share_vertical \r\n .ngfb-buttons div.pinterest-button { height:40px; margin-top:42px; }\r\n\r\n.ngfb-buttons div.reddit-button,\r\n.ngfb-preset-small_share_count \r\n .ngfb-buttons div.reddit-button { width:130px; }\r\n.ngfb-preset-large_share_vertical \r\n .ngfb-buttons div.reddit-button { margin-bottom:10px; }\r\n\r\n.ngfb-buttons div.stumbleupon-button,\r\n.ngfb-preset-small_share_count\r\n .ngfb-buttons div.stumbleupon-button { width:84px; }\r\n.ngfb-preset-large_share_vertical\r\n .ngfb-buttons div.stumbleupon-button { height:60px; line-height:60px; }\r\n\r\n.ngfb-buttons div.tumblr-button,\r\n.ngfb-preset-small_share_count \r\n .ngfb-buttons div.tumblr-button { width:85px; }\r\n.ngfb-preset-large_share_vertical \r\n .ngfb-buttons div.tumblr-button { height:20px; line-height:20px; }\r\n\r\n\";s:19:\"buttons_css_content\";s:692:\"/* Save an empty style text box to reload the default example styles.\r\n * These styles are provided as examples only - modifications may be \r\n * necessary to customize the layout for your website. Social sharing\r\n * buttons can be aligned vertically, horizontally, floated, etc.\r\n */\r\n\r\n.ngfb-content-buttons { \r\n /* center the buttons with an extra 10px margin top/bottom */\r\n display:block;\r\n margin:10px auto;\r\n text-align:center;\r\n\r\n /* uncomment to create a shadowed box for the buttons */\r\n /*\r\n padding:2px;\r\n text-align:center;\r\n background-color:#eee;\r\n -moz-box-shadow:0 0 5px #aaa;\r\n -webkit-box-shadow:0 0 5px #aaa;\r\n box-shadow:0 0 5px #aaa;\r\n border-radius:3px;\r\n */\r\n}\r\n\";s:19:\"buttons_css_excerpt\";s:440:\"/* Save an empty style text box to reload the default example styles.\r\n * These styles are provided as examples only - modifications may be \r\n * necessary to customize the layout for your website. Social sharing\r\n * buttons can be aligned vertically, horizontally, floated, etc.\r\n */\r\n\r\n.ngfb-excerpt-buttons { \r\n /* center the buttons with an extra 5px margin top and bottom */\r\n display:block;\r\n margin:5px auto;\r\n text-align:center;\r\n}\r\n\";s:22:\"buttons_css_admin_edit\";s:615:\"/* Save an empty style text box to reload the default example styles.\r\n * These styles are provided as examples only - modifications may be \r\n * necessary to customize the layout for your website. Social sharing\r\n * buttons can be aligned vertically, horizontally, floated, etc.\r\n */\r\n\r\n/* align the buttons vertically in two 117px wide columns */\r\n.ngfb-admin_edit-buttons { \r\n text-align:left; \r\n}\r\n.ngfb-admin_edit-buttons .ngfb-buttons { \r\n margin:0;\r\n}\r\n.ngfb-admin_edit-buttons .ngfb-buttons > div { \r\n display:inline-block;\r\n vertical-align:top;\r\n padding:0;\r\n margin:5px;\r\n width:117px; \r\n height:20px;\r\n}\r\n\";s:19:\"buttons_css_sidebar\";s:3125:\"/* Save an empty style text box to reload the default example styles.\r\n * These styles are provided as examples only - modifications may be \r\n * necessary to customize the layout for your website. Social sharing\r\n * buttons can be aligned vertically, horizontally, floated, etc.\r\n */\r\n\r\n/* hide the sidebar if screen width is less than 1000px */\r\n@media (max-width:1000px) {\r\n #ngfb-sidebar {\r\n display:none;\r\n }\r\n}\r\n\r\n#ngfb-sidebar { \r\n cursor:pointer;\r\n text-align:center;\r\n position:fixed;\r\n z-index:99;\r\n\r\n /* position 100px down from top and 10% from left */\r\n top:100px;\r\n left:10%;\r\n\r\n /* position 100px down from top and 450px left of center \r\n * by using the right margin to push sidebar left */\r\n /*\r\n top:100px;\r\n right:50%;\r\n margin:0 450px 0 0;\r\n */\r\n}\r\n\r\n#ngfb-sidebar-header { \r\n /* show a large sharing icon at the top\r\n * using javascript, this header can be hovered/clicked to \r\n * show/hide the sidebar\r\n */\r\n width:72px;\r\n height:72px;\r\n background-image:url(\"/wordpress1/wp-content/plugins/nextgen-facebook/images/share-icon-2.png\");\r\n background-repeat:no-repeat;\r\n background-position:center;\r\n}\r\n\r\n#ngfb-sidebar-buttons { \r\n display:block;\r\n width:auto;\r\n height:auto;\r\n overflow:visible;\r\n border-style:solid;\r\n\r\n /* uncomment to hide the sidebar buttons by default */\r\n /*\r\n width:0; \r\n height:0;\r\n overflow:hidden;\r\n border-style:none;\r\n */\r\n\r\n /* create a shadowed box with a light grey background */\r\n border-radius:5px;\r\n background:none repeat scroll 0% 0% rgb(250, 250, 250);\r\n box-shadow:0px 0px 5px rgb(120, 120, 120);\r\n border-width:1px;\r\n border-color:rgb(255, 255, 255);\r\n}\r\n\r\n#ngfb-sidebar .ngfb-buttons > div, /* default uses large buttons */\r\n#ngfb-sidebar .ngfb-preset-large_share_vertical .ngfb-buttons > div { \r\n display:block;\r\n text-align:center;\r\n width:60px;\r\n height:65px;\r\n margin:10px 5px;\r\n}\r\n\r\n#ngfb-sidebar .ngfb-preset-small_share_count .ngfb-buttons > div,\r\n#ngfb-sidebar .ngfb-preset-small_share_count .ngfb-buttons > div[class*=\"-button\"] { \r\n text-align:left;\r\n line-height:20px;\r\n width:120px;\r\n height:20px;\r\n margin:10px;\r\n}\r\n\r\n#ngfb-sidebar .ngfb-buttons div.pinterest-button,\r\n#ngfb-sidebar .ngfb-preset-large_share_vertical\r\n .ngfb-buttons div.pinterest-button { height:40px; margin-top:42px; }\r\n#ngfb-sidebar .ngfb-preset-small_share_count\r\n .ngfb-buttons div.pinterest-button { height:20px; margin-top:10px; }\r\n\r\n#ngfb-sidebar .ngfb-buttons div.stumbleupon-button,\r\n#ngfb-sidebar .ngfb-preset-large_share_vertical\r\n .ngfb-buttons div.stumbleupon-button { height:60px; line-height:60px; }\r\n#ngfb-sidebar .ngfb-preset-small_share_count\r\n .ngfb-buttons div.stumbleupon-button { height:20px; line-height:20px; }\r\n\r\n#ngfb-sidebar .ngfb-buttons div.tumblr-button,\r\n#ngfb-sidebar .ngfb-preset-large_share_vertical\r\n .ngfb-buttons div.tumblr-button { height:20px; line-height:20px; }\r\n\r\n#ngfb-sidebar .ngfb-buttons div.reddit-button,\r\n#ngfb-sidebar .ngfb-preset-large_share_vertical\r\n .ngfb-buttons div.reddit-button { margin-bottom:15px; }\r\n#ngfb-sidebar .ngfb-preset-small_share_count\r\n .ngfb-buttons div.reddit-button { margin-bottom:10px; }\r\n\r\n\";s:21:\"buttons_css_shortcode\";s:426:\"/* Save an empty style text box to reload the default example styles.\r\n * These styles are provided as examples only - modifications may be \r\n * necessary to customize the layout for your website. Social sharing\r\n * buttons can be aligned vertically, horizontally, floated, etc.\r\n */\r\n\r\n.ngfb-shortcode-buttons { \r\n /* display the buttons inline, aligned with the left margin */\r\n display:inline-block;\r\n text-align:left;\r\n}\r\n\";s:18:\"buttons_css_widget\";s:559:\"/* Save an empty style text box to reload the default example styles.\r\n * These styles are provided as examples only - modifications may be \r\n * necessary to customize the layout for your website. Social sharing\r\n * buttons can be aligned vertically, horizontally, floated, etc.\r\n */\r\n\r\n/* align the buttons vertically in a single 160px wide column */\r\n.ngfb-widget-buttons { \r\n text-align:left;\r\n}\r\n.ngfb-widget-buttons .ngfb-buttons { \r\n margin:20px 0 0 0;\r\n}\r\n.ngfb-widget-buttons .ngfb-buttons > div { \r\n display:block;\r\n margin:10px;\r\n width:160px; \r\n}\r\n\";s:18:\"buttons_js_sidebar\";s:358:\"/* Save an empty style text box to reload the default javascript */\n\njQuery(\"#ngfb-sidebar\").mouseenter( function(){ \n jQuery(\"#ngfb-sidebar-buttons\").css({\n display:\"block\",\n width:\"auto\",\n height:\"auto\",\n overflow:\"visible\",\n \"border-style\":\"solid\",\n }); } );\njQuery(\"#ngfb-sidebar\").click( function(){ \n jQuery(\"#ngfb-sidebar-buttons\").toggle(); } );\";s:22:\"buttons_preset_content\";s:0:\"\";s:22:\"buttons_preset_excerpt\";s:0:\"\";s:25:\"buttons_preset_admin_edit\";s:17:\"small_share_count\";s:22:\"buttons_preset_sidebar\";s:20:\"large_share_vertical\";s:24:\"buttons_preset_shortcode\";s:0:\"\";s:21:\"buttons_preset_widget\";s:0:\"\";s:20:\"buttons_add_to_forum\";i:1;s:20:\"buttons_add_to_topic\";i:1;s:20:\"buttons_add_to_reply\";i:1;s:22:\"buttons_add_to_channel\";i:1;s:22:\"buttons_css_bbp_single\";s:365:\"/* Save an empty style text box to reload the default example styles.\n * These styles are provided as examples only - modifications may be \n * necessary to customize the layout for your website. Social sharing\n * buttons can be aligned vertically, horizontally, floated, etc.\n */\n\n.ngfb-bbp_single-buttons { \n display:block;\n margin:10px auto;\n text-align:center;\n}\";s:19:\"email_on_bbp_single\";i:0;s:16:\"fb_on_bbp_single\";i:0;s:16:\"gp_on_bbp_single\";i:0;s:21:\"twitter_on_bbp_single\";i:0;s:22:\"instgram_on_bbp_single\";i:0;s:22:\"linkedin_on_bbp_single\";i:0;s:21:\"myspace_on_bbp_single\";i:0;s:17:\"pin_on_bbp_single\";i:0;s:20:\"pocket_on_bbp_single\";i:0;s:20:\"buffer_on_bbp_single\";i:0;s:20:\"reddit_on_bbp_single\";i:0;s:22:\"managewp_on_bbp_single\";i:0;s:21:\"stumble_on_bbp_single\";i:0;s:20:\"tumblr_on_bbp_single\";i:0;s:16:\"yt_on_bbp_single\";i:0;s:19:\"skype_on_bbp_single\";i:0;s:16:\"vk_on_bbp_single\";i:0;s:22:\"buttons_pos_bbp_single\";s:3:\"top\";s:23:\"buttons_css_bp_activity\";s:366:\"/* Save an empty style text box to reload the default example styles.\n * These styles are provided as examples only - modifications may be \n * necessary to customize the layout for your website. Social sharing\n * buttons can be aligned vertically, horizontally, floated, etc.\n */\n\n.ngfb-bp_activity-buttons { \n display:block;\n margin:10px auto;\n text-align:center;\n}\";s:20:\"email_on_bp_activity\";i:0;s:17:\"fb_on_bp_activity\";i:0;s:17:\"gp_on_bp_activity\";i:0;s:22:\"twitter_on_bp_activity\";i:0;s:23:\"instgram_on_bp_activity\";i:0;s:23:\"linkedin_on_bp_activity\";i:0;s:22:\"myspace_on_bp_activity\";i:0;s:18:\"pin_on_bp_activity\";i:0;s:21:\"pocket_on_bp_activity\";i:0;s:21:\"buffer_on_bp_activity\";i:0;s:21:\"reddit_on_bp_activity\";i:0;s:23:\"managewp_on_bp_activity\";i:0;s:22:\"stumble_on_bp_activity\";i:0;s:21:\"tumblr_on_bp_activity\";i:0;s:17:\"yt_on_bp_activity\";i:0;s:20:\"skype_on_bp_activity\";i:0;s:17:\"vk_on_bp_activity\";i:0;s:24:\"plugin_google_shorten:is\";s:8:\"disabled\";}','yes'),(1628,'gourlbox_height','230','yes'),(1629,'gourlbox_border','','yes'),(863,'metaslider_systemcheck','a:2:{s:16:\"wordPressVersion\";b:0;s:12:\"imageLibrary\";b:0;}','yes'),(864,'ml-slider_children','a:0:{}','yes'),(817,'wp_logo_slider_images','a:11:{s:14:\"20150803032711\";a:6:{s:2:\"id\";s:14:\"20150803032711\";s:4:\"file\";s:110:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/BeloitFlag.jpg\";s:8:\"file_url\";s:76:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/BeloitFlag.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:82:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/BeloitFlag-thumb.jpg\";s:14:\"image_links_to\";s:47:\"https://en.wikipedia.org/wiki/Beloit,_Wisconsin\";}s:14:\"20150803032739\";a:6:{s:2:\"id\";s:14:\"20150803032739\";s:4:\"file\";s:114:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/dariousPittman.jpg\";s:8:\"file_url\";s:80:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/dariousPittman.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:86:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/dariousPittman-thumb.jpg\";s:14:\"image_links_to\";s:31:\"https://www.facebook.com/pro251\";}s:14:\"20150803033044\";a:6:{s:2:\"id\";s:14:\"20150803033044\";s:4:\"file\";s:112:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/DorothyDavis.jpg\";s:8:\"file_url\";s:78:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/DorothyDavis.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:84:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/DorothyDavis-thumb.jpg\";s:14:\"image_links_to\";s:49:\"https://www.facebook.com/candyrain.crafts?fref=ts\";}s:14:\"20150803033059\";a:6:{s:2:\"id\";s:14:\"20150803033059\";s:4:\"file\";s:111:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/TraceThayer.jpg\";s:8:\"file_url\";s:77:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TraceThayer.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:83:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TraceThayer-thumb.jpg\";s:14:\"image_links_to\";s:48:\"https://www.facebook.com/Lilchief420KR3W?fref=ts\";}s:14:\"20150803033122\";a:6:{s:2:\"id\";s:14:\"20150803033122\";s:4:\"file\";s:110:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/AdamGasser.jpg\";s:8:\"file_url\";s:76:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/AdamGasser.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:82:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/AdamGasser-thumb.jpg\";s:14:\"image_links_to\";s:41:\"https://www.reverbnation.com/earthtoclark\";}s:14:\"20150803033142\";a:6:{s:2:\"id\";s:14:\"20150803033142\";s:4:\"file\";s:114:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/RodGottfredson.jpg\";s:8:\"file_url\";s:80:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/RodGottfredson.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:86:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/RodGottfredson-thumb.jpg\";s:14:\"image_links_to\";s:23:\"http://rodthebarber.com\";}s:14:\"20150803033209\";a:6:{s:2:\"id\";s:14:\"20150803033209\";s:4:\"file\";s:113:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/tindogrecords.jpg\";s:8:\"file_url\";s:79:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/tindogrecords.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:85:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/tindogrecords-thumb.jpg\";s:14:\"image_links_to\";s:28:\"http://www.tindogrecords.com\";}s:14:\"20150803035608\";a:6:{s:2:\"id\";s:14:\"20150803035608\";s:4:\"file\";s:114:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/Jonnabusiness1.jpg\";s:8:\"file_url\";s:80:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Jonnabusiness1.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:86:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Jonnabusiness1-thumb.jpg\";s:14:\"image_links_to\";s:48:\"https://www.facebook.com/MediumJonnaKay/timeline\";}s:14:\"20150803040438\";a:6:{s:2:\"id\";s:14:\"20150803040438\";s:4:\"file\";s:123:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/cropped-new-logo-beloit.png\";s:8:\"file_url\";s:89:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/cropped-new-logo-beloit.png\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:95:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/cropped-new-logo-beloit-thumb.png\";s:14:\"image_links_to\";s:28:\"http://www.beloitauction.com\";}s:14:\"20150803040523\";a:6:{s:2:\"id\";s:14:\"20150803040523\";s:4:\"file\";s:111:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/JackKennedy.jpg\";s:8:\"file_url\";s:77:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/JackKennedy.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:83:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/JackKennedy-thumb.jpg\";s:14:\"image_links_to\";s:0:\"\";}s:14:\"20150803040819\";a:6:{s:2:\"id\";s:14:\"20150803040819\";s:4:\"file\";s:108:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/2015/08/R.Porter.jpg\";s:8:\"file_url\";s:74:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/R.Porter.jpg\";s:9:\"thumbnail\";s:0:\"\";s:13:\"thumbnail_url\";s:80:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/R.Porter-thumb.jpg\";s:14:\"image_links_to\";s:47:\"https://www.facebook.com/ladolphlius.richardson\";}}','yes'),(536,'bpfed','a:2:{s:7:\"buttons\";s:161:\"fontsizeselect, bold, italic, underline, strikethrough, alignleft, aligncenter, alignright, blockquote, bullist, numlist, removeformat, link, unlink, bpfed_image\";s:16:\"max_image_upload\";s:1:\"1\";}','yes'),(28941,'_transient_jpp_li_0f2acc50f3d943f5bd1e8513df57fb89','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (66.249.67.67)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:3:\"282\";s:6:\"expire\";i:1444161382;}','no'),(29571,'_transient_timeout_plugin_slugs','1444327722','no'),(29572,'_transient_plugin_slugs','a:31:{i:0;s:19:\"akismet/akismet.php\";i:1;s:22:\"amazon-link/amazon.php\";i:2;s:19:\"bbpress/bbpress.php\";i:3;s:33:\"bbpress-new-ui/bbpress-new-ui.php\";i:4;s:25:\"powerpress/powerpress.php\";i:5;s:24:\"buddypress/bp-loader.php\";i:6;s:35:\"bp-forum-editor/bp-forum-editor.php\";i:7;s:45:\"custom-facebook-feed/custom-facebook-feed.php\";i:8;s:35:\"si-contact-form/si-contact-form.php\";i:9;s:37:\"gd-bbpress-tools/gd-bbpress-tools.php\";i:10;s:42:\"google-publisher/GooglePublisherPlugin.php\";i:11;s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";i:12;s:49:\"google-calendar-events/google-calendar-events.php\";i:13;s:43:\"image-banner-widget/image-banner-widget.php\";i:14;s:19:\"jetpack/jetpack.php\";i:15;s:19:\"meerkat/meerkat.php\";i:16;s:29:\"memberful-wp/memberful-wp.php\";i:17;s:37:\"nextgen-facebook/nextgen-facebook.php\";i:18;s:74:\"official-statcounter-plugin-for-wordpress/StatCounter-Wordpress-Plugin.php\";i:19;s:31:\"photo-gallery/photo-gallery.php\";i:20;s:29:\"seo-ultimate/seo-ultimate.php\";i:21;s:25:\"add-to-any/add-to-any.php\";i:22;s:43:\"simple-image-widget/simple-image-widget.php\";i:23;s:45:\"simple-page-sidebars/simple-page-sidebars.php\";i:24;s:61:\"soundcloud-sound-competition/soundcloud-sound-competition.php\";i:25;s:23:\"sz-google/sz-google.php\";i:26;s:25:\"ultimate-member/index.php\";i:27;s:66:\"videowhisper-live-streaming-integration/videowhisper_streaming.php\";i:28;s:52:\"wordpress-backup-to-dropbox/wp-backup-to-dropbox.php\";i:29;s:25:\"wp-members/wp-members.php\";i:30;s:25:\"forum-server/wpf-main.php\";}','no'),(316,'fs_contact_global','a:11:{s:12:\"fscf_version\";s:6:\"4.0.37\";s:7:\"donated\";s:5:\"false\";s:18:\"vcita_auto_install\";s:5:\"false\";s:13:\"vcita_dismiss\";s:5:\"false\";s:17:\"vcita_initialized\";s:5:\"false\";s:22:\"vcita_show_disable_msg\";s:5:\"false\";s:10:\"vcita_site\";s:13:\"www.vcita.com\";s:19:\"enable_php_sessions\";s:5:\"false\";s:19:\"num_standard_fields\";s:1:\"4\";s:12:\"max_form_num\";s:1:\"2\";s:9:\"form_list\";a:2:{i:1;s:16:\"Money Bomb entry\";i:2;s:6:\"Form 2\";}}','yes'),(11127,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1440475850','yes'),(11128,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"5223\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3269\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3204\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2734\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2503\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2001\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1906\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1836\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1787\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1769\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1738\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1728\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1621\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1419\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1357\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1299\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1207\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1165\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1150\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1021\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"975\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:3:\"942\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"932\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"896\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"865\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"853\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"806\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"791\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"767\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"743\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"738\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"736\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"695\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"687\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"682\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"669\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"649\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"645\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"640\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"639\";}}','yes'),(165,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437909533;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'),(172,'theme_mods_stronghold','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437920079;s:4:\"data\";a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:8:\"top-left\";N;s:9:\"top-right\";N;s:7:\"footer-\";N;s:9:\"footer--2\";N;s:9:\"footer--3\";N;s:9:\"footer--4\";N;s:10:\"footer-nav\";N;}}}','yes'),(166,'current_theme','Selma','yes'),(167,'theme_mods_twentyfourteen','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437909657;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";N;s:9:\"sidebar-3\";N;}}}','yes'),(168,'theme_switched','','yes'),(8434,'_site_transient_timeout_wporg_theme_feature_list','1440289271','yes'),(8435,'_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'),(173,'widget_calendar','a:3:{i:1;a:0:{}i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(174,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(175,'widget_pages','a:3:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:0:\"\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(176,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(178,'_transient_stronghold_categories','1','yes'),(180,'theme_mods_business-leader','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437918326;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";N;}}}','yes'),(229,'bp-pages','a:5:{s:7:\"members\";i:373;s:8:\"activity\";i:10;s:6:\"groups\";i:82;s:8:\"register\";i:371;s:8:\"activate\";i:304;}','yes'),(188,'theme_mods_mw-small','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437919732;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:11:\"blog-widget\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:7:\"footer1\";N;s:7:\"footer2\";N;s:7:\"footer3\";N;}}}','yes'),(185,'theme_mods_diversity-style','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437919442;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"sidebar-posts\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:12:\"sidebar-page\";N;s:11:\"footer-left\";N;s:14:\"footer-middle1\";N;s:14:\"footer-middle2\";N;s:12:\"footer-right\";N;}}}','yes'),(189,'theme_mods_heatmap-adaptive','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437919926;s:4:\"data\";a:13:{s:19:\"wp_inactive_widgets\";a:0:{}s:21:\"heatmapthemeadprimary\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:23:\"heatmapthemeadsecondary\";N;s:20:\"heatmapthemeadheader\";N;s:25:\"heatmapthemeadleaderboard\";N;s:23:\"heatmapthemeadblogabove\";N;s:24:\"heatmapthemeadpostinline\";N;s:27:\"heatmapthemeadpostincontent\";N;s:23:\"heatmapthemeadpostbelow\";N;s:23:\"heatmapthemeadblogbelow\";N;s:23:\"heatmapthemeadblogpost1\";N;s:23:\"heatmapthemeadblogpost2\";N;s:23:\"heatmapthemeadblogpost3\";N;}}}','yes'),(190,'heatmapthemead_theme_options','a:52:{s:14:\"remove_welcome\";s:3:\"off\";s:11:\"remove_news\";s:3:\"off\";s:11:\"current_tab\";s:15:\"welcome_options\";s:12:\"color_scheme\";s:10:\"skywalking\";s:10:\"link_color\";s:7:\"#1b8be0\";s:10:\"font_style\";s:14:\"opensans-arial\";s:12:\"theme_layout\";s:13:\"both-sidebars\";s:22:\"theme_home_page_layout\";s:13:\"both-sidebars\";s:17:\"theme_page_layout\";s:13:\"both-sidebars\";s:17:\"theme_post_layout\";s:13:\"both-sidebars\";s:9:\"max_width\";s:4:\"1160\";s:19:\"minimum_theme_width\";s:3:\"660\";s:19:\"maximum_theme_width\";s:4:\"2000\";s:19:\"minimum_image_width\";s:1:\"0\";s:19:\"maximum_image_width\";s:4:\"2000\";s:19:\"default_image_width\";s:3:\"615\";s:13:\"featured_page\";s:4:\"demo\";s:19:\"featured_page_title\";s:3:\"off\";s:12:\"facebook_url\";s:0:\"\";s:11:\"twitter_url\";s:0:\"\";s:14:\"googleplus_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:7:\"rss_url\";s:0:\"\";s:16:\"rss_comments_url\";s:0:\"\";s:8:\"rss_icon\";s:2:\"on\";s:17:\"rss_comments_icon\";s:2:\"on\";s:14:\"credits_footer\";s:159:\"<p>Powered by <a href=\"http://wordpress.org\" target=\"_blank\">WordPress</a> and <a href=\"http://heatmaptheme.com\" target=\"_blank\">HeatMap AdAptive Theme</a></p>\";s:11:\"reset_theme\";s:0:\"\";s:21:\"full_width_navigation\";s:3:\"off\";s:8:\"branding\";s:2:\"on\";s:18:\"primary_navigation\";s:2:\"on\";s:20:\"secondary_navigation\";s:2:\"on\";s:17:\"footer_navigation\";s:2:\"on\";s:15:\"post_navigation\";s:2:\"on\";s:9:\"meta_date\";s:2:\"on\";s:11:\"meta_author\";s:2:\"on\";s:13:\"meta_comments\";s:2:\"on\";s:15:\"meta_categories\";s:2:\"on\";s:9:\"meta_tags\";s:2:\"on\";s:9:\"page_meta\";s:2:\"on\";s:14:\"featured_image\";s:2:\"on\";s:24:\"featured_image_floatleft\";s:3:\"off\";s:19:\"featured_image_size\";s:5:\"large\";s:13:\"facebook_like\";s:3:\"off\";s:12:\"twitter_like\";s:3:\"off\";s:18:\"googleplusone_like\";s:3:\"off\";s:11:\"css_scripts\";s:0:\"\";s:12:\"head_scripts\";s:0:\"\";s:14:\"footer_scripts\";s:0:\"\";s:20:\"subfooter_navigation\";s:2:\"on\";}','yes'),(194,'theme_mods_willingness','a:6:{i:0;b:0;s:16:\"header_textcolor\";s:5:\"blank\";s:16:\"background_color\";s:6:\"000000\";s:12:\"header_image\";s:97:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/cropped-thebeloitpodcastbanner2.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:9;s:3:\"url\";s:97:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/cropped-thebeloitpodcastbanner2.jpg\";s:13:\"thumbnail_url\";s:97:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/cropped-thebeloitpodcastbanner2.jpg\";s:6:\"height\";i:461;s:5:\"width\";i:1500;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437938165;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";N;s:8:\"footer-1\";N;s:8:\"footer-2\";N;s:8:\"footer-3\";N;s:8:\"footer-4\";N;}}}','yes'),(191,'widget_heatmapthemead_ad','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(192,'widget_heatmapthemead_social_icons_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(196,'recently_activated','a:5:{s:19:\"akismet/akismet.php\";i:1440293440;s:74:\"official-statcounter-plugin-for-wordpress/StatCounter-Wordpress-Plugin.php\";i:1440131590;s:39:\"soundcloud-master/soundcloud-master.php\";i:1440131568;s:66:\"videowhisper-live-streaming-integration/videowhisper_streaming.php\";i:1439839975;s:37:\"nextgen-facebook/nextgen-facebook.php\";i:1439839948;}','yes'),(206,'hide-loggedout-adminbar','0','yes'),(207,'bp-disable-avatar-uploads','0','yes'),(208,'bp-disable-group-avatar-uploads','0','yes'),(209,'bp-disable-account-deletion','0','yes'),(210,'bp-disable-blogforum-comments','0','yes'),(211,'_bp_theme_package_id','legacy','yes'),(212,'bp_restrict_group_creation','0','yes'),(213,'_bp_enable_akismet','1','yes'),(214,'_bp_enable_heartbeat_refresh','1','yes'),(215,'_bp_force_buddybar','','yes'),(216,'_bp_retain_bp_default','','yes'),(217,'widget_bp_core_login_widget','a:3:{i:1;a:0:{}i:2;a:1:{s:5:\"title\";s:13:\"Members Login\";}s:12:\"_multiwidget\";i:1;}','yes'),(218,'widget_bp_core_members_widget','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:4:{s:5:\"title\";s:7:\"Members\";s:11:\"max_members\";s:1:\"5\";s:14:\"member_default\";s:6:\"active\";s:10:\"link_title\";b:1;}}','yes'),(219,'widget_bp_core_whos_online_widget','a:3:{i:1;a:0:{}i:2;a:2:{s:5:\"title\";s:12:\"Who\'s Online\";s:11:\"max_members\";s:2:\"15\";}s:12:\"_multiwidget\";i:1;}','yes'),(220,'widget_bp_core_recently_active_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(221,'widget_bp_groups_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(222,'widget_bp_messages_sitewide_notices_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(228,'bp-active-components','a:8:{s:8:\"xprofile\";s:1:\"1\";s:8:\"settings\";s:1:\"1\";s:7:\"friends\";s:1:\"1\";s:8:\"messages\";s:1:\"1\";s:8:\"activity\";s:1:\"1\";s:13:\"notifications\";s:1:\"1\";s:6:\"groups\";s:1:\"1\";s:7:\"members\";s:1:\"1\";}','yes'),(230,'_bp_db_version','9951','yes'),(227,'registration','0','yes'),(234,'bp_disable_blogforum_comments','1','yes'),(264,'optionsframework_simpleo','a:130:{s:14:\"enable_favicon\";s:1:\"1\";s:7:\"favicon\";s:99:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732.jpg\";s:18:\"enable_breadcrumbs\";s:1:\"1\";s:17:\"responsive_design\";s:1:\"1\";s:15:\"enable_scrollup\";s:1:\"1\";s:14:\"scrollup_color\";s:7:\"#8db529\";s:20:\"scrollup_hover_color\";s:7:\"#ffffff\";s:10:\"logo_width\";s:3:\"350\";s:11:\"logo_height\";s:2:\"80\";s:15:\"logo_top_margin\";s:2:\"25\";s:16:\"logo_left_margin\";s:1:\"0\";s:18:\"logo_bottom_margin\";s:2:\"25\";s:17:\"logo_right_margin\";s:2:\"25\";s:4:\"logo\";s:89:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner1.jpg\";s:13:\"logo_alt_text\";s:0:\"\";s:14:\"logo_uppercase\";s:1:\"1\";s:16:\"google_font_logo\";s:7:\"PT Sans\";s:14:\"logo_font_size\";s:2:\"50\";s:16:\"logo_font_weight\";s:3:\"700\";s:15:\"text_logo_color\";s:7:\"#ffffff\";s:19:\"enable_logo_tagline\";s:1:\"1\";s:17:\"tagline_font_size\";s:2:\"16\";s:13:\"tagline_color\";s:7:\"#ffffff\";s:17:\"tagline_uppercase\";s:1:\"1\";s:16:\"google_font_menu\";s:7:\"PT Sans\";s:13:\"nav_font_size\";s:2:\"14\";s:14:\"menu_uppercase\";s:1:\"1\";s:14:\"nav_font_color\";s:7:\"#ffffff\";s:16:\"nav_border_color\";s:7:\"#ffffff\";s:12:\"nav_bg_color\";s:7:\"#888888\";s:16:\"nav_bg_sub_color\";s:7:\"#8db529\";s:20:\"nav_hover_font_color\";s:7:\"#000000\";s:18:\"nav_bg_hover_color\";s:7:\"#8db529\";s:18:\"nav_cur_item_color\";s:7:\"#000000\";s:16:\"google_font_body\";s:7:\"PT Sans\";s:14:\"body_font_size\";s:2:\"15\";s:15:\"body_font_color\";s:7:\"#000000\";s:21:\"header_address_enable\";b:0;s:14:\"header_address\";s:42:\"1234 Street Name, City Name, United States\";s:12:\"header_phone\";s:14:\"(123) 456-7890\";s:12:\"header_email\";s:19:\"info@yourdomain.com\";s:13:\"address_color\";s:7:\"#ffffff\";s:20:\"header_social_enable\";s:1:\"1\";s:19:\"header_social_color\";s:7:\"#000000\";s:23:\"header_social_box_color\";s:7:\"#9ee800\";s:15:\"image_slider_on\";b:0;s:16:\"about_section_on\";b:0;s:20:\"about_section_header\";s:8:\"About Us\";s:18:\"about_section_text\";s:132:\"The Beloit Podcast features the past, present, and future of all things related to the Beloit, Wisconsin area. The show features eve\";s:16:\"about_text_color\";s:7:\"#000000\";s:14:\"about_bg_color\";s:7:\"#ffffff\";s:24:\"content_boxes_section_on\";b:0;s:13:\"blog_posts_on\";s:1:\"1\";s:14:\"default_slider\";s:6:\"refine\";s:16:\"image_slider_cat\";s:1:\"1\";s:16:\"slider_animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:4:\"5000\";s:15:\"animation_speed\";s:3:\"800\";s:10:\"slider_num\";s:1:\"3\";s:8:\"captions\";b:0;s:17:\"captions_bg_color\";s:7:\"#8db529\";s:19:\"captions_font_color\";s:7:\"#000000\";s:15:\"footer_bg_color\";s:7:\"#000000\";s:18:\"copyright_bg_color\";s:7:\"#888888\";s:25:\"footer_widget_title_color\";s:7:\"#ffffff\";s:32:\"footer_widget_title_border_color\";s:7:\"#ffffff\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:31:\"footer_widget_text_border_color\";s:7:\"#dddddd\";s:14:\"footer_widgets\";s:1:\"1\";s:21:\"footer_copyright_text\";s:33:\"Copyright 2015 The Beloit Podcast\";s:15:\"layout_settings\";s:6:\"col2-l\";s:12:\"blog_content\";s:12:\"Full Content\";s:12:\"blog_excerpt\";s:2:\"50\";s:16:\"simple_paginaton\";b:0;s:15:\"post_navigation\";s:7:\"sidebar\";s:9:\"post_info\";s:5:\"above\";s:17:\"featured_img_post\";s:1:\"1\";s:19:\"first_column_header\";s:0:\"\";s:17:\"first_column_text\";s:0:\"\";s:18:\"first_column_image\";s:0:\"\";s:16:\"first_column_url\";s:0:\"\";s:20:\"second_column_header\";s:0:\"\";s:18:\"second_column_text\";s:0:\"\";s:19:\"second_column_image\";s:11:\"fa-umbrella\";s:17:\"second_column_url\";s:0:\"\";s:19:\"third_column_header\";s:16:\"Tons of Features\";s:17:\"third_column_text\";s:0:\"\";s:18:\"third_column_image\";s:0:\"\";s:16:\"third_column_url\";s:0:\"\";s:15:\"cont_text_color\";s:7:\"#ffffff\";s:13:\"cont_bg_color\";s:7:\"#8db529\";s:26:\"archives_widget_font_color\";s:7:\"#8DB529\";s:27:\"archives_widget_title_color\";s:7:\"#000000\";s:28:\"categories_widget_font_color\";s:7:\"#8DB529\";s:29:\"categories_widget_title_color\";s:7:\"#000000\";s:26:\"calendar_widget_font_color\";s:7:\"#8DB529\";s:27:\"calendar_widget_title_color\";s:7:\"#000000\";s:29:\"custom_menu_widget_font_color\";s:7:\"#8DB529\";s:30:\"custom_menu_widget_title_color\";s:7:\"#000000\";s:23:\"links_widget_font_color\";s:7:\"#8DB529\";s:24:\"links_widget_title_color\";s:7:\"#000000\";s:22:\"meta_widget_font_color\";s:7:\"#8DB529\";s:23:\"meta_widget_title_color\";s:7:\"#000000\";s:23:\"pages_widget_font_color\";s:7:\"#8DB529\";s:24:\"pages_widget_title_color\";s:7:\"#000000\";s:33:\"recent_comments_widget_font_color\";s:7:\"#8DB529\";s:34:\"recent_comments_widget_title_color\";s:7:\"#000000\";s:30:\"recent_posts_widget_font_color\";s:7:\"#8DB529\";s:31:\"recent_posts_widget_title_color\";s:7:\"#000000\";s:21:\"rss_widget_font_color\";s:7:\"#8DB529\";s:22:\"rss_widget_title_color\";s:7:\"#000000\";s:24:\"search_widget_font_color\";s:7:\"#8DB529\";s:25:\"search_widget_title_color\";s:7:\"#000000\";s:27:\"tag_cloud_widget_font_color\";s:7:\"#ffffff\";s:28:\"tag_cloud_widget_title_color\";s:7:\"#000000\";s:22:\"text_widget_font_color\";s:7:\"#8DB529\";s:23:\"text_widget_title_color\";s:7:\"#000000\";s:23:\"other_widget_font_color\";s:7:\"#8DB529\";s:24:\"other_widget_title_color\";s:7:\"#000000\";s:13:\"facebook_link\";s:52:\"#https://www.facebook.com/thebeloitpod?_rdr=p&ref=hl\";s:11:\"flickr_link\";s:1:\"#\";s:8:\"rss_link\";s:35:\"#http://thebeloitpod.libsyn.com/rss\";s:12:\"twitter_link\";s:33:\"#https://twitter.com/thebeloitpod\";s:12:\"youtube_link\";s:57:\"#https://www.youtube.com/channel/UC--5kiupTN5WJRoRlk9W2Ew\";s:14:\"pinterest_link\";s:1:\"#\";s:11:\"tumblr_link\";s:1:\"#\";s:11:\"google_link\";s:52:\"#https://plus.google.com/109360204643055233776/posts\";s:13:\"dribbble_link\";s:1:\"#\";s:13:\"linkedin_link\";s:47:\"#https://soundcloud.com/the-beloit-podcast?ls=1\";s:14:\"instagram_link\";s:1:\"#\";}','yes'),(256,'theme_mods_lightning','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437944347;s:4:\"data\";a:12:{s:19:\"wp_inactive_widgets\";a:0:{}s:26:\"front-side-top-widget-area\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:27:\"common-side-top-widget-area\";N;s:30:\"common-side-bottom-widget-area\";N;s:21:\"post-side-widget-area\";N;s:21:\"page-side-widget-area\";N;s:27:\"attachment-side-widget-area\";N;s:28:\"home-content-top-widget-area\";N;s:21:\"footer-upper-widget-1\";a:0:{}s:15:\"footer-widget-1\";N;s:15:\"footer-widget-2\";N;s:15:\"footer-widget-3\";N;}}}','yes'),(257,'lightning_theme_options','a:7:{s:9:\"head_logo\";s:99:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732.jpg\";s:9:\"color_key\";s:7:\"#5ca031\";s:14:\"color_key_dark\";s:7:\"#5ca031\";s:17:\"postUpdate_hidden\";b:1;s:17:\"top_slide_image_1\";s:89:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner2.jpg\";s:17:\"top_slide_image_2\";s:0:\"\";s:17:\"top_slide_image_3\";s:0:\"\";}','yes'),(261,'theme_mods_simpleo','a:4:{i:0;b:0;s:16:\"background_color\";s:6:\"000000\";s:16:\"background_image\";s:81:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/WP_20150711_035.jpg\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437947550;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:22:\"bp_core_login_widget-3\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:15:\"footer-widget-1\";N;s:15:\"footer-widget-2\";N;s:15:\"footer-widget-3\";N;s:15:\"footer-widget-4\";N;}}}','yes'),(280,'theme_mods_mantra','a:10:{i:0;b:0;s:16:\"background_color\";s:6:\"000000\";s:12:\"header_image\";s:98:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/cropped-the-beloitpodcasttwitter.png\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:266;s:3:\"url\";s:98:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/cropped-the-beloitpodcasttwitter.png\";s:13:\"thumbnail_url\";s:98:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/cropped-the-beloitpodcasttwitter.png\";s:6:\"height\";i:100;s:5:\"width\";i:1070;}s:16:\"background_image\";s:81:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/WP_20150711_035.jpg\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_position_x\";s:6:\"center\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:1:{s:3:\"top\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1440281253;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:20:\"widget_wpmemwidget-3\";i:1;s:17:\"recent-comments-2\";i:2;s:6:\"meta-2\";i:3;s:12:\"categories-2\";i:4;s:10:\"archives-2\";}s:19:\"primary-widget-area\";a:14:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:13:\"simpleimage-2\";i:3;s:13:\"simpleimage-3\";i:4;s:13:\"simpleimage-4\";i:5;s:13:\"simpleimage-5\";i:6;s:13:\"simpleimage-6\";i:7;s:13:\"simpleimage-7\";i:8;s:13:\"simpleimage-8\";i:9;s:13:\"simpleimage-9\";i:10;s:14:\"simpleimage-10\";i:11;s:14:\"simpleimage-11\";i:12;s:14:\"simpleimage-12\";i:13;s:6:\"text-4\";}s:21:\"secondary-widget-area\";a:1:{i:0;s:6:\"text-2\";}s:17:\"third-widget-area\";a:3:{i:0;s:22:\"bp_core_login_widget-2\";i:1;s:28:\"bp_core_whos_online_widget-2\";i:2;s:18:\"bbp_login_widget-2\";}s:18:\"fourth-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}s:25:\"above-content-widget-area\";a:0:{}s:25:\"below-content-widget-area\";a:0:{}}}}','yes'),(7104,'_transient_timeout_feed_mod_d677f38b04483417c6b9854f1bc8afc0','1440133881','no'),(7105,'_transient_feed_mod_d677f38b04483417c6b9854f1bc8afc0','1440090681','no'),(7108,'_transient_timeout_settings_errors','1440092120','no'),(7102,'_transient_timeout_feed_d677f38b04483417c6b9854f1bc8afc0','1440133881','no'),(7103,'_transient_feed_d677f38b04483417c6b9854f1bc8afc0','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Cryout Creations \";s: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:29:\"http://www.cryoutcreations.eu\";s: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:51:\"WordPress and Opencart Themes, Modules and Plugins!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Aug 2015 15:14:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-GB\";s: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:29:\"http://wordpress.org/?v=4.2.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Mantra 2.4 celebrates 4 years of existence\";s: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:96:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-4-celebrates-4-years-of-existence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-4-celebrates-4-years-of-existence#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 May 2015 21:19: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.cryoutcreations.eu/?p=31859\";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:878:\"It\'s a time for joy and celebration, not just because a new Mantra update is here to correct and improve some long outstanding issues but also because this month, 4 years ago, our little Mantra opened its digital eyes and met with the Wordpress repository for the very first time. And boy what I ride it has been since...\r\n\r\nMantra is now 4 years old and although her little sisters are starting to surpass her, she\'s still older, wiser and still has a few issues up her sleeves.\r\n\r\nOne of the most important changes in the latest update is the <u>removal of shortcodes</u>. The keep the <em>[mantra]</em> or <em>[cryout]</em> shortcodes working on your site, we\'ve moved this functionality to a separate plugin... <a href=\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-4-celebrates-4-years-of-existence\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Zed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2062:\"<p>It’s a time for joy and celebration, not just because a new Mantra update is here to correct and improve some long outstanding issues but also because this month, 4 years ago, our little Mantra opened its digital eyes and met with the WordPress repository for the very first time. And boy what I ride it has been since…</p>\n<p>Mantra is now 4 years old and although her little sisters are starting to surpass her, she’s still older, wiser and still has a few issues up her sleeves.</p>\n<p>One of the most important changes in this update is the <span style=\"text-decoration: underline;\">removal of shortcodes</span>. Per the <a href=\"https://make.wordpress.org/themes/handbook/guidelines/plugin-territory/\" target=\"_blank\">WordPress Theme Guidelines concerning plugin territory</a>, this change has long been coming.<br />\nTo keep the <em>[mantra]</em> or <em>[cryout]</em> shortcodes working on your site, we’ve moved this functionality to a separate plugin which can be <span style=\"text-decoration: underline;\"><a href=\"/cryout-shortcodes\" target=\"_blank\">downloaded from here</a></span>.</p>\n<p>For all other changes, see the changelog:</p>\n<ul>\n<li>removed shortcodes functionality (per WordPress Theme Guidelines)</li>\n<li>fixed wp.media issue</li>\n<li>fixed a namespace typo added in 2.3.3</li>\n<li>added option to enable/disable zoom for mobile devices</li>\n<li>added Dailymotion social icon (thanks to Jean-Louis Rosolen)</li>\n<li>fixed breadcrumbs not handling tag pages</li>\n<li>replaced <em>get_bloginfo(‘url’)</em> with <em>home_url()</em> per latest WordPress guidelines</li>\n<li>replaced <em>wp_convert_bytes_to_hr()</em> (deprecated) with <em>size_format()</em></li>\n<li>fixed layout/image border option non-clickable on IE 11</li>\n<li>fixed title tag issue</li>\n<li>removed obsolete meta template tag</li>\n<li>fixed slider next/previous arrows always visible</li>\n<li>fixed slides count limitation when using custom posts by ID</li>\n<li>fixed disappearing/too small images inside tables issue on Chrome</li>\n</ul>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-4-celebrates-4-years-of-existence/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"14\";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:75:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Where is WordPress heading? To have or not have theme options…\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"http://www.cryoutcreations.eu/wordpress-themes/where-is-wordpress-heading-to-have-or-not-have-theme-options\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"http://www.cryoutcreations.eu/wordpress-themes/where-is-wordpress-heading-to-have-or-not-have-theme-options#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 May 2015 09:45:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:12:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Nirvana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Parabola\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"Tempera\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:16:\"Wordpress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:10:\"customizer\";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:5:{s:4:\"data\";s:6:\"mantra\";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:5:{s:4:\"data\";s:7:\"nirvana\";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:5:{s:4:\"data\";s:8:\"parabola\";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:5:{s:4:\"data\";s:7:\"tempera\";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:5:{s:4:\"data\";s:5:\"theme\";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:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.cryoutcreations.eu/?p=31624\";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:1312:\"Wordpress\' Theme Review Team seems to always be involved in a lot of decision making. That\'s good, decisions have to be made and a direction needs to be set and maintained. \r\n\r\nHowever lately the decisions seem to be taken hastily, without analysing all the effects (and maybe consequences) they have. We\'ve had scuffles with Wordpress before, but we\'ve moved on, adapted, clarified or changed things. But this new decision directly affects themes - meaning it touches us the most. \r\n \r\n<strong>In the latest Theme Review Theme weekly meeting a decision was taken to start to recommend, and eventually (in 6 months time) to impose the use of the Customizer API in all themes and for all theme options.</strong>\r\n\r\n<strong>What does this mean for you? It means themes will no longer be allowed to have separate theme option pages (like our nicely arranged <em>Theme Settings</em> page) but instead must switch to using the Customizer for all their options.</strong>\r\n\r\nRight now this rule is mandatory for all new theme submissions, while existing themes get 6 months to switch or new updates will no longer be accepted in the repository. <a href=\"http://www.cryoutcreations.eu/wordpress-themes/where-is-wordpress-heading-to-have-or-not-have-theme-options\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Zed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8791:\"<p><img class=\"alignright wp-image-31701\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2015/05/silenced-croud-medium-1024x683.jpg\" alt=\"silenced-croud-medium\" width=\"400\" height=\"267\" />WordPress’ Theme Review Team seems to always be involved in a lot of decision making. That’s good, decisions have to be made and a direction needs to be set and maintained.</p>\n<p>We had scuffles with WordPress before (like the Tempera 1.2.<em>1-6</em> updates) mostly due to unclear rules, rules applied subjectively, a lack of rules, unknown rules, changing rules or a combination of all these simultaneously. WordPress is an open source, contributive project and as a result there are a lot of people involved in it, with diverging views and opinions. But we moved on, we changed things, had rules cleared up or even had new rules written down.</p>\n<p>However lately the decisions seem to be taken hastily, without analysing all effects (and maybe consequences) they have. One of these decisions directly affects themes – meaning it affects us the most.</p>\n<h3></h3>\n<h2>The decision</h2>\n<p><strong>In the latest Theme Review Theme weekly meeting a decision was taken to start to recommend, and eventually (in 6 months time) to impose the use of the <a href=\"https://en.support.wordpress.com/customizer/\" target=\"_blank\">Customizer</a> API in all themes and for all theme options.</strong></p>\n<p><strong>What does this mean for you? It means themes will no longer be allowed to have separate theme option pages (like our nicely arranged <em>Theme Settings</em> page) but instead must switch to using the Customizer for all their options.</strong></p>\n<p>Right now this rule is mandatory for all new theme submissions, while existing themes get 6 months to switch or new updates will no longer be accepted in the repository.<br />\n<strong><span style=\"text-decoration: underline;\">EDIT</span></strong>: To keep things clear, themes already in the repository will not be removed (they will remain installable and usable with the included options page after the deadline) but the developers will not be able to submit new updates to the repository with the included options page functionality.</p>\n<p>What is the Customizer? For those who don’t know, it’s that narrow little thing displayed on the left side of the screen when you go to <em>Appearance > Customize</em>.</p>\n<p>Okay, the Customizer is a good thing. It tries to unify the multitude of different variants of presenting theme options into a single interface. It tries to help the users get the most and best out of their sites (and themes) by making things clearer, better arranged and with a uniform appearance.</p>\n<h3></h3>\n<h2>The effects</h2>\n<p>But it is way too young yet and limited to impose it on everyone. It barely handles a couple of theme option types (<em>as listed in the <a href=\"https://codex.wordpress.org/Class_Reference%5CWP_Customize_Manager%5Cadd_control\" target=\"_blank\">Codex</a></em>): <em>text input</em>, <em>colour selector</em>, <em>file upload</em>, <em>image</em>.<em><br />\n</em></p>\n<p>Our themes already additionally use (and thus require) the long established <em>sliders</em>, <em>drop down selectors</em>, <em>check boxes</em> and <em>advanced (image thumbnail-based) selectors</em> (like the ones we use for Layout and Image Border settings). <em>EDIT: Some of these option types have been added to the Customizer API (as <a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/\" target=\"_blank\">documented here</a>).</em></p>\n<p>The customizer is built to be expandable, but forcing it now when it doesn’t already have all the required field types will only mean developers will have to each write their own custom variant of new handlers, possibly ruining consistency, clarity and even security in the process.</p>\n<h3></h3>\n<h2>The results</h2>\n<p>Forcing us to move to the Customizer means we have to rewrite the handling for all these options – <strong>270 separate options</strong> (counted in Nirvana; the other themes are very similar) making up about <strong>a third of our theme code</strong> for the new API.</p>\n<p>Not to mention the limited space the Customizer provides. Imagine cramming up all options visible in the left image into the narrow grey sidebar visible in the right image. And that’s just one of the theme’s settings section…</p>\n<table class=\"borderless\">\n<tbody>\n<tr>\n<td><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2015/04/wordpress-nirvana.png\"><img class=\"aligncenter wp-image-31626\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2015/04/wordpress-nirvana-114x300.png\" alt=\"wordpress-nirvana\" width=\"191\" height=\"500\" /></a></td>\n<td><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2015/04/wordpress-customizer.png\"><img class=\"aligncenter wp-image-31627\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2015/04/wordpress-customizer-1024x406.png\" alt=\"wordpress-customizer\" width=\"400\" height=\"159\" /></a></td>\n</tr>\n</tbody>\n</table>\n<p>We would need to give up on and drop all option types that are not currently supported (or write up custom handling code for theme – something which may not be viewed with good eyes by the theme review team). This is a lose-lose case both for us and themes users.<br />\nAll this rewriting would take a lot of time and effort (stolen from new options and new themes) and put it into something that isn’t yet mature enough or well laid out to be used for more than a screen-full of theme options…</p>\n<p>The Customizer is a good idea. It should be promoted and recommended. But forcing it on everyone at this point is a poor decision.</p>\n<h3></h3>\n<h2>The choice</h2>\n<p>If the new Customizer rule remains enforced, we’ll have a choice to make… and it can only be one of the following:</p>\n<ul>\n<li>waste a lot of time and effort to try to move (and adapt) as many options as possible into the Customizer but lose the rest / plenty of them</li>\n<li>waste some time and effort and move most used options into the Customizer but lose most of them</li>\n<li>remove all theme options</li>\n<li>provide the options via a plugin that is not available in the repository and requires a two-step manual installation</li>\n<li>stop submitting themes to the free repository (and provide manual updates instead)</li>\n</ul>\n<p> </p>\n<p><strong>We’d rather it’s neither of the above and we get to keep on providing theme options for everyone to <em>customize</em> our themes to the best of their abilities and desires. </strong></p>\n<p><strong>We are not giving up on our themes, they are our beloved creations after all. We will try to fight this decision and we can use your help – if you have a WordPress.org/.com account, <span style=\"text-decoration: underline;\">you can leave a comment in the <a href=\"http://www.cryoutcreations.eu/wordpress-themes/where-is-wordpress-heading-to-have-or-not-have-theme-options\" target=\"_blank\">official forum</a>.</span> Or write a post on your blog or site, spread the word.<br />\n</strong></p>\n<p>And if all fails we’ll do our best to find alternative solutions to keeping the options page included.<strong><br />\n</strong></p>\n<hr />\n<p> </p>\n<p>Let us know what you think about this in the poll below (or use the comments if the poll is not enough).</p>\nNote: There is a poll embedded within this post, please visit the site to participate in this post\'s poll.\n<hr />\n<p>The original forum is located here<strong>:</strong></p>\n<blockquote><p><em><a href=\"https://make.wordpress.org/themes/2015/04/21/this-weeks-meeting-important-information-regarding-theme-options/\" target=\"_blank\">https://make.wordpress.org/themes/2015/04/21/this-weeks-meeting-important-information-regarding-theme-options/</a></em></p></blockquote>\n<p><em>If you have a WordPress.com/.org account you can have your say in this subject too. </em><em>Bigger names<a href=\"https://steamcommunity.com/games/SteamWorkshop/announcements/detail/208632365253244218\" target=\"_blank\"><strong>*</strong></a> have changed their decisions based on user feedback before….</em></p>\n<p>Additional discussions on the subject:</p>\n<ul>\n<li><a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\" target=\"_blank\">http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options</a></li>\n<li><a href=\"https://make.wordpress.org/themes/2015/04/22/details-on-the-new-theme-settings-customizer-guideline/\" target=\"_blank\">https://make.wordpress.org/themes/2015/04/22/details-on-the-new-theme-settings-customizer-guideline/</a></li>\n</ul>\n<p> </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"http://www.cryoutcreations.eu/wordpress-themes/where-is-wordpress-heading-to-have-or-not-have-theme-options/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"30\";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:60:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Windows Phone support pitch-in campaign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://www.cryoutcreations.eu/news/windows-phone-support-pitchin-campaign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://www.cryoutcreations.eu/news/windows-phone-support-pitchin-campaign#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Sep 2014 12:34:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Nirvana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"Parabola\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"Tempera\";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:5:{s:4:\"data\";s:8:\"pitch-in\";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:5:{s:4:\"data\";s:13:\"windows phone\";s: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:38:\"http://www.cryoutcreations.eu/?p=27095\";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:844:\"You may have noticed the appearance of a little blue box on the right side of our website. It\'s not there just because we love blue, but because we need a bit of help (being blue).\r\n\r\nDeveloping web-related creations is hard work enough. Developing free creations... that\'s turning more and more into a spiritual path. But when we also need to test our creations, that\'s where matters complicate.\r\n\r\nIn today\'s world with thousands upon thousands of devices, each with its own software, testing things just gets more difficult. While an emulator is good enough in some cases, it does not cover everything. We need an actual device running Windows Phone to truly test things out. We need the real deal... <a href=\"http://www.cryoutcreations.eu/news/windows-phone-support-pitchin-campaign\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Zed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3424:\"<p>You may have noticed the appearance of a little blue box on the right side of our website. It’s not there just because we love blue, but because we need a bit of help (being blue).</p>\n<p>Developing web-related creations is hard work enough. Developing free creations… that’s turning more and more into a spiritual path (hence our – perhaps you noticed – interest in deities). But when we also need to test our creations, that’s where matters complicate (and deities don’t seem to want to help).</p>\n<p>In today’s world with thousands upon thousands of devices, each with its own software deciding whether or not it should follow the standards, testing things just gets more difficult. Beside 4 computers (each with all mentionable browsers and operating systems), 5 Android devices of various sizes and 2 iThings, lately Windows Phone (thank you, Microsoft…) came into play. While an emulator is good enough in some cases (and we did use it to its limits to test basic functionality), it does not cover everything. We need an actual device running Windows Phone to truly test things out. We need the real deal.</p>\n<p>Here is where the little blue box that started this whole monologue comes in. It keeps track of the donations we received in our “helps us improve Windows Phone support” campaign (thanks to the handy little script <a href=\"http://pitchinbox.com/\" target=\"_blank\">PitchinBox</a> provides). If you’re using a Windows phone or want your site running a theme of ours to better handle itself on a Windows phone, you can donate any amount to the cause. Just click on the “Pitch in” button, enter the amount (use any name you wish) and then you’ll get to the usual Paypal donation system. While we do love that lucky 13% we’re at so far, we do need all your help to take over all the <del>world</del> browsers.</p>\n<p>We’ll use every bit gathered until the end of October on <em>[nope, not on Steam’s Halloween sale, not this time at least; but on]</em> an entry level Windows device to do our proper testing on.</p>\n<p>And if we don’t reach the desired target… well.. we’ll just have to spend all your generous donations on coffee<a title=\"or hot chocolate\" href=\"#\">*</a> to help us stay awake in those long testing sessions using the emulator…</p>\n<div id=\"attachment_27468\" style=\"width: 460px\" class=\"wp-caption aligncenter\"><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/windows_phone_z.jpg\"><img class=\"wp-image-27468\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/windows_phone_z.jpg\" alt=\"\" width=\"450\" height=\"273\" /></a><p class=\"wp-caption-text\">Part of the testing hardware (Windows-es & Android)</p></div>\n<div id=\"attachment_27271\" style=\"width: 460px\" class=\"wp-caption aligncenter\"><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/windows_phone_k.jpg\"><img class=\"wp-image-27271\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/windows_phone_k.jpg\" alt=\"Part 2\" width=\"450\" height=\"265\" /></a><p class=\"wp-caption-text\">Another part of the testing hardware (more Windows, Android & iOS)</p></div>\n<p><strong><u>Edit:</u></strong> Thank you everyone for your support. We now have a <em>genuine</em> Windows Phone to do all those (head-aching and pain-staking) browser support tests.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://www.cryoutcreations.eu/news/windows-phone-support-pitchin-campaign/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Nirvana is now LIVE and you are a part of it!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://www.cryoutcreations.eu/wordpress-themes/nirvana/nirvana-now-live-part\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.cryoutcreations.eu/wordpress-themes/nirvana/nirvana-now-live-part#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Sep 2014 19:12: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:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Nirvana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Parabola\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"Tempera\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"nirvana\";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:5:{s:4:\"data\";s:5:\"theme\";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:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.cryoutcreations.eu/?p=27206\";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:431:\"Our latest WordPress theme, Nirvana, is now Live and available to download and install directly from WordPress.org. Now there\'s absolutely no reason not to check it out.\r\n\r\nFollow us after the jump for the celebration and the full changelog since the theme\'s brief but intense existence. <a href=\"http://www.cryoutcreations.eu/wordpress-themes/nirvana/nirvana-now-live-part\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Kay\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7475:\"<p><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/dystopia.jpg\"><img class=\"aligncenter size-full wp-image-27295\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/dystopia.jpg\" alt=\"dystopia\" width=\"768\" height=\"494\" /></a></p>\n<p>At first it was not only strange but also incredibly difficult to manage. Being thrust from the cold, industrial world I knew into <em>this</em> was something well beyond anything I could ever adjust to. Still glass giants, buzzing metallic machines and steel skies were all I had ever known. Spending hours in a poorly lit cubicle, squinting at the bright panel in front of me, pushing buttons, inputting data, calculating and extracting other data were pretty much the only things I ever knew. Life was as bleached and tedious on the inside as it was on the outside. But that was all I had ever known.</p>\n<p><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/corridors.jpg\"><img class=\"alignright size-full wp-image-27294\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/corridors.jpg\" alt=\"corridors\" width=\"373\" height=\"500\" /></a></p>\n<p>The corporate giant I worked in was filled with series upon series of empty corridors with doors on each side, all leading to more corridors with their own emptiness and even more doors. And under the corridors’ overly bright, constantly flickering neon lights the illusion of choice was so great that I believed it. Working overtime, struggling to make my way upward, to advance through the concrete bowels of this all-powerful colossus gave a fake sense of accomplishment. And it was all I had so I gave it my all.</p>\n<p>But one bright cold day in April, returning from my short launch break I found a note placed discreetly on my desk. It just said: <em>‘When ready, go to the other side’</em>. I sat down, hands in my lap, holding the piece of paper between my fingers while cautiously looking over my shoulders for anything suspicious. But everything was still. So I focused on the note once again, trying to figure out this riddle and guess who it was from. Recent conversations with colleagues replayed in my head as I flipped the note, only to find something else was written on the other side: <em>‘cryoutcreations.com’</em>. So this was where I had to go. Curiosity got the best of me so I awoke my dormant computing machine and swiftly typed the mysterious address. Upon activation everything went black. And then it happened.</p>\n<p><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/note.jpg\"><img class=\"aligncenter size-full wp-image-27297\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/note.jpg\" alt=\"note\" width=\"448\" height=\"299\" /></a></p>\n<p>I woke up almost hovering over a grassy plain, wide valleys stretching out before me and foaming streams filling the gorges between them. In the distance mountains with sharp, white tops were reaching for the sky, scratching the few patches of fluffy clouds on its belly. A soft eddy gave speed to the countless birds and insects and also bent, slowly, the trees and flowers on one side then on the other. Everything was alive; I was alive. I knew then what this place must be so I stopped reasoning and questioning how and why I got here. I simply was.</p>\n<p><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/nirvana-place.jpg\"><img class=\"aligncenter size-full wp-image-27296\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/nirvana-place.jpg\" alt=\"nirvana-place\" width=\"768\" height=\"480\" /></a></p>\n<p>I soon realized that the hovering sensation I was experiencing was just my new state of being. I had no more worries, no more stress, no more regret. And so I was weightless, free, I was one with the world around me. And by being a part of the whole, I became complete. I laid back, every muscle in my body relaxed and I fell asleep…</p>\n<p><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/apples.jpg\"><img class=\"alignleft size-full wp-image-27293\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/09/apples.jpg\" alt=\"apples\" width=\"261\" height=\"300\" /></a></p>\n<p> </p>\n<p>But a short while after, a tinkling sensation in my stomach woke me up. To my surprise, I was hungry. I really didn’t think I could still be hungry in this place. I got up and took another look around: rivers, plants, forests, I could even see other humans in the distance. This wasn’t the end. This was a new beginning, a beginning I wasn’t really prepared for. I couldn’t cook, hunt, fish nor build a shelter, I couldn’t really do anything. But I would learn, by myself or from the others here and I’d make it work. I had choices, real choices that would have an immediate effect on the world around me. It wasn’t going to be easy, but things would go my way for once. This was my world now- Nirvana, and I was free.</p>\n<p> </p>\n<p>And the straight forward version of this post: Our latest WordPress theme, Nirvana, is now Live and available to <a href=\"https://wordpress.org/themes/nirvana\" title=\"Install Nirvana\" target=\"_blank\"><strong>download and install</strong></a> directly from WordPress.org. The changelog (also bundled with the theme files as <em>changelog.txt</em>) for the past versions follows:</p>\n<p><span style=\"text-decoration: underline;\">Nirvana 0.9.5.1</span></p>\n<ul>\n<li>Fixed styles enqueue order bug created in 0.9.5</li>\n</ul>\n<p><span style=\"text-decoration: underline;\">Nirvana 0.9.5</span></p>\n<ul>\n<li>Removed conditional check for ‘wp_enqueue_media’</li>\n<li>Removed all ‘wp_register_style’ and ‘wp_register_script’ functions.</li>\n<li>Enqueued all admin scripts and styles via ‘admin_enqueue_scripts’</li>\n<li>Added a changelog.txt file</li>\n</ul>\n<p><span style=\"text-decoration: underline;\">Nirvana 0.9.4</span></p>\n<ul>\n<li>Adjusted columns (photo frames, padding, margins)</li>\n<li>Fixed multi-line widget titles</li>\n<li>Removed leftover presentation page ‘hide background’ option</li>\n<li>Default option for columns is now frameless</li>\n<li>Fixed ‘more posts’ button border on IE</li>\n<li>Fixed sidebar ‘dasboard’ typo</li>\n</ul>\n<p><span style=\"text-decoration: underline;\">Nirvana 0.9.3</span></p>\n<ul>\n<li>Edited ‘readme.txt’ for new and improved copyright declarations</li>\n<li>Removed Bebas Neue font (copyright incompatibility)</li>\n<li>Removed hardcoded Javascript found in frontpage.php – moved it to custom-styles.php</li>\n<li>Replaced ‘dirname ( __FILE__ )’ with ‘get_template_directory()’</li>\n</ul>\n<p><span style=\"text-decoration: underline;\">Nirvana 0.9.2</span></p>\n<ul>\n<li>Fixed header image responsiveness for full width / normal width</li>\n<li>Fixed header image responsiveness</li>\n<li>Removed leftovers from defaults.php</li>\n<li>Added Russian translation</li>\n</ul>\n<p><span style=\"text-decoration: underline;\">Nirvana 0.9.1</span></p>\n<ul>\n<li>Fixed menu alignment</li>\n<li>Fixed header image not starting at top:0</li>\n<li>Fixed topbar height when set to ‘fixed’</li>\n<li>Fixed topbar on mobile res below 480px</li>\n<li>Fixed front columns layout when using custom widgets</li>\n<li>Fixed Presentation Page columns on mobile using custom widgets (nth-child replaced with nth-of-type)</li>\n</ul>\n<p>Stay tuned for more updates, we have big plans for this one!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://www.cryoutcreations.eu/wordpress-themes/nirvana/nirvana-now-live-part/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress Child Themes Tutorial\";s: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:89:\"http://www.cryoutcreations.eu/wordpress-themes/wordpress-tutorials/wordpress-child-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://www.cryoutcreations.eu/wordpress-themes/wordpress-tutorials/wordpress-child-themes#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Aug 2014 14:08:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Parabola\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Tempera\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:19:\"Wordpress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"child theme\";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:5:{s:4:\"data\";s:5:\"theme\";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:5:{s:4:\"data\";s:8:\"tutorial\";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:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://www.cryoutcreations.eu/?p=3508\";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:397:\"You never really got a solid grip on WordPress child themes? Well now\'s your chance.\r\n\r\nWe provide both a complete step-by-step tutorial as well as a one page go-to resource for quick starting a child theme in no time. The choice is yours. <a href=\"http://www.cryoutcreations.eu/wordpress-themes/wordpress-tutorials/wordpress-child-themes\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Kay\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4581:\"<p><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2013/09/wordpres-child-themes5.jpg\"><img class=\"aligncenter size-full wp-image-26718 no-border-img\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2013/09/wordpres-child-themes5.jpg\" alt=\"WordPress Child Themes Tutorial\" width=\"720\" height=\"450\" /></a></p>\n<h2><strong>Do you need a child theme?</strong></h2>\n<p>If you’re not satisfied with the customization options that the WordPress theme you’re using provides then you have to take matters into your own hands. Even if that theme gives you hundreds of options (like our themes do) there’s still something which probably doesn’t get your boat floating smoothly enough.</p>\n<p>Or maybe you’re the extra creative type that really needs to make everything his own and is never satisfied. Or maybe you’re a serial killer, coming from a broken family, with a long history of drug and alcohol abuse and you’re just starting your first blog about hand-crafted torture equipment and we all know how picky serial killers can get. Too specific? Let’s move on.</p>\n<h2><strong>Why do you need a child theme?</strong></h2>\n<p>Yes, you can edit theme files directly, but then, when you make an update you’ll lose all your customizations and blame the theme developers for it. Or, option no. 2: you can choose to never update the theme after you make your changes. But that way you lose all future bug-fixes and extra features that come with future theme updates. Not to mention that one day you might completely forget about your customizations and hit that ‘Update’ button without giving it a second thought. Who are you going to blame then, ha? Ha? You’ll need a mirror for this one.</p>\n<p>This is why it’s better to never touch theme files and unconditionally love and embrace WordPress’ child themes. It may take 5 minutes out of your life now but it will save you a lot more in the long run.</p>\n<h2><strong>Can you handle <del>the truth</del> a child theme?</strong></h2>\n<p>If you want to get things done your way, if you want the ultimate customization power at your fingertips you will have to go the extra mile. Don’t worry, it’s not an actual mile nor a kilometre – it’s more like a couple of yards/meters and we’re here to walk that distance with you. Multiple times if we have to.</p>\n<p>Here’s what you’ll need:</p>\n<ul>\n<li>As you’ll have to add a few files to your server, you’ll need FTP access to the server and a FTP client (we’ll suggest one). This is recommended but not 100% necessary because after creating the child theme folder on your local machine you can archive that and upload it via WordPress (<a title=\"Semi-manual installation\" href=\"www.cryoutcreations.eu/wordpress-themes/wordpress-tutorials/how-to-install-a-wordpress-theme\" target=\"_blank\">semi-manual installation</a>). More on this later.</li>\n<li>You’ll also need a text editor to edit those files (we’ll suggest one as well)</li>\n<li>Basic understanding of CSS and maybe HTML and PHP. But these can be learned as you go especially since you’ll be copy-pasting and editing, not creating things from scratch.</li>\n<li>A couple of minutes out of your busy blogging schedule</li>\n</ul>\n<p>So basically you don’t have to know anything and if child themes sound just like what the doctor ordered and you want to get a solid grip on them, you are welcomed to move on to page 2 of our tutorial. It will take you on a step-by-step journey through WordPress child themes at the end of which you will have a solid understanding of anything child theme related.</p>\n<p>If, on the other hand, you just want to create a child theme as soon as possible, we’ve also provided a WordPress Child Theme cheat sheet. It’s a one page go-to resource of everything you need when creating a child themes. So, what will it be? The blue pill or the red one? (actual color names have been changed to protect the identity of those involved)</p>\n<div class=\"button-choice\"><a class=\"cr2-button-color\" target=\"_parent\" style=\"background-color:#098080\" href=\"http://www.cryoutcreations.eu/wordpress-themes/tempera/wordpress-child-themes/2\" title=\"Child Theme Tutorial\" >Child Theme Tutorial</a> <a class=\"cr2-button-color\" target=\"_parent\" style=\"background-color:#FF7210\" href=\"http://www.cryoutcreations.eu/wordpress-themes/tempera/wordpress-child-themes/5\" title=\"Child Theme Cheat Sheet\" >Child Theme Cheat Sheet</a></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://www.cryoutcreations.eu/wordpress-themes/wordpress-tutorials/wordpress-child-themes/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"23\";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:51:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Mantra 2.3.4 still breathes\";s: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:81:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-4-still-breathes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-4-still-breathes#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Apr 2014 16:08: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.cryoutcreations.eu/?p=24878\";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:453:\"Yes, it is still alive! Despite such a long break in releases (the longest break yet), Mantra still has some breaths left.\r\n\r\nOne of these breaths is the 2.3.4 update, bringing the eagerly awaited (and fiercely requested) social icons bugfix (bug kindly bundled by yours truly with the previous update). <a href=\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-4-still-breathes\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Zed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:960:\"<p>Yes, it is still alive! Despite such a long break in releases (the longest break yet), Mantra still has some breaths left.</p>\n<p>One of these breaths is the 2.3.4 update, bringing the eagerly awaited (and fiercely requested) social icons bugfix (bug kindly bundled by yours truly with the previous update).</p>\n<p>Changelog:</p>\n<ul>\n<li>fixed the social icons (unable to disable) bug introduced in 2.3.3</li>\n<li>corrected the meta show/hide options not working for custom post types (pointed out by <a href=\"http://wordpress.org/support/topic/removing-category-indcation-from-post-preview-1\" target=\"_blank\">tkemmere</a>)</li>\n<li>corrected content editor (<em>html .mceContentBody</em>) width to properly use the configured site width instead of an arbitrary number</li>\n<li>improved handling of empty site title and/or description (will no longer display a single dash in the browser title)</li>\n<li>updated French translation</li>\n</ul>\n<p> </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-4-still-breathes/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"61\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Mantra 2.3.3 stays in line\";s: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:80:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-3-stays-in-line\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-3-stays-in-line#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 02 Feb 2014 13:39: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.cryoutcreations.eu/?p=21107\";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:517:\"Mantra receives a small maintenance update, tweaking and changing things here and there.\r\n\r\nThe most noteworthy thing related to the 2.3.3 update (but not part of the update itself) is the corrupt Mantra archive lurking around on Wordpress\' servers. One of its evil purposes is to leave your pages content-less (but be ready for other nasty surprises as well). The fix? <a href=\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-3-stays-in-line\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Zed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1811:\"<p>Mantra receives a small maintenance update, tweaking and changing things here and there.</p>\n<p><del>The most noteworthy thing related to the 2.3.3 update (but not part of the update itself) is the corrupt Mantra archive lurking around on WordPress’ servers. It hides there in the dark waiting to jump out and break your site. One of its evil purposes is to leave your pages content-less (but be ready for other nasty surprises as well).</del></p>\n<p><del>The fix? Well since the problem is on WordPress’ servers, our power is limited. What we can do is recommend you to create an export of Mantra’s settings, delete it and attempt to reinstall it. If the issue re-occurs, delete again and try a manual install using the theme archive available <a href=\"http://img.cryout.eu/mantra.2.3.3.zip\" target=\"_blank\">here</a>.</del></p>\n<p>Edit: WordPress fixed the archive and nobody should receive a corrupt file on future updates to this version.</p>\n<p>Changelog:</p>\n<ul>\n<li>updated to the new WP 3.8 “fluid-layout” and “fixed-layout” tags</li>\n<li>3 social icons are now enabled by default in two theme areas</li>\n<li>fixed import/export settings not working on some rare occasions</li>\n<li>hopefully fixed smileys getting huge in captions</li>\n<li>changed default table cell alignment to top (instead of bottom)</li>\n<li>fixed Google fonts to correctly handle SSL websites</li>\n<li>added Recaptcha, Math Captcha, Captcha compatibility styling (thanks to <a href=\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-1-8-1-is-not-superman/comment-page-1#comment-13523\" target=\"_blank\">David B</a>)</li>\n<li>corrected site title not resizing enough on the smallest mobile devices</li>\n<li>updated French translation</li>\n<li>added Czech translation</li>\n</ul>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-3-stays-in-line/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"40\";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:72:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Show your WordPress theme some love\";s: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:90:\"http://www.cryoutcreations.eu/wordpress-themes/tempera/show-your-wordpress-theme-some-love\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://www.cryoutcreations.eu/wordpress-themes/tempera/show-your-wordpress-theme-some-love#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Jan 2014 22:05:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:11:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Parabola\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Tempera\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"Zombie Apocalypse\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:6:\"mantra\";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:5:{s:4:\"data\";s:8:\"parabola\";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:5:{s:4:\"data\";s:6:\"review\";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:5:{s:4:\"data\";s:7:\"tempera\";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:5:{s:4:\"data\";s:5:\"theme\";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:5:{s:4:\"data\";s:9:\"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:\"\";}i:10;a:5:{s:4:\"data\";s:17:\"zombie apocalypse\";s: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:38:\"http://www.cryoutcreations.eu/?p=15336\";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:465:\"Are you happy with the WordPress theme you\'re using? Would you consider yourself and your theme as best buds? Or do you think of your theme as sexy? \r\n\r\nThemes are a big part of what makes WordPress great and the search for that perfect one is a long and whining road. Has that road come to and end for you? <a href=\"http://www.cryoutcreations.eu/wordpress-themes/tempera/show-your-wordpress-theme-some-love\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Kay\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3589:\"<div id=\"attachment_15362\" style=\"width: 650px\" class=\"wp-caption aligncenter\"><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/01/wordpress-themes-love1.jpg\"><img class=\"size-full wp-image-15362\" alt=\"wordpress-themes-love\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/01/wordpress-themes-love1.jpg\" width=\"640\" height=\"360\" /></a><p class=\"wp-caption-text\"><strong>WordPress Beauty</strong></p></div>\n<p><em>Are you happy with the WordPress theme you’re using? Would you consider yourself and your theme as best buds? Would you take your theme out drinking on a Saturday night? How would you feel about watching a late movie with it on your living room couch? <strong>Is your theme that friendly?</strong></em></p>\n<p><em>Or do you think of your theme as sexy? Would you pay money to see her strip? Would you cheat on your wife with it should that opportunity arise? Or maybe… do you think your wife would jump in on the fun?<strong> Is your theme that hot?</strong></em></p>\n<p><em>Would you kill for your WordPress theme? Would you go to prison and share a prison cell with a guy named Butch just for her? Do you really think she’ll wait for you? That she’ll be there when you get out? <strong>Is your theme really worth it?</strong></em></p>\n<p><em>And what about the very nature of your theme? Isn’t her free spirit so unbearable that it makes you sick to the stomach? How can you stand the fact that others get to put their filthy hands all over her? Don’t you hate it that she’s not all yours? And do you really think she does all those *naughty* things just with you? <strong>Is your theme that original?</strong></em></p>\n<p><strong><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/01/wordpress-love-icon.jpg\"><img class=\"alignleft size-full wp-image-15367\" alt=\"wordpress-love-icon\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2014/01/wordpress-love-icon.jpg\" width=\"296\" height=\"288\" /></a>To theme or not to theme</strong>, that is not really the question is it? Themes are a big part of what makes WordPress great and the search for that perfect one is a long and whining road. And although we don’t have that many themes, we like to think that for many of you that road ends up at our site’s doorstep.</p>\n<p>But why don’t you tell us yourselves how things are? The possibility to <strong>review</strong> themes has been around for quite some time now over at <a href=\"www.wordpress.org\">WordPress.org</a> and we’d like you guys to head over there and give your favorite theme a quick review.</p>\n<p>If you feel like you have something to say that may help others in making a decision about one of our themes, please do so. It doesn’t have to be a lengthy review, it just has to be an honest one.</p>\n<div id=\"wordpress-themes-love\" style=\"width: 670px; display: block; margin: 30px auto;\">\n<a class=\"cr2-button-dark\" target=\"_blank\" href=\"http://wordpress.org/support/view/theme-reviews/tempera\" title=\" Review Tempera \" > Review Tempera </a>\n<a class=\"cr2-button-dark\" target=\"_blank\" href=\"http://wordpress.org/support/view/theme-reviews/parabola\" title=\" Review Parabola \" > Review Parabola </a>\n<a class=\"cr2-button-dark\" target=\"_blank\" href=\"http://wordpress.org/support/view/theme-reviews/mantra\" title=\" Review Mantra \" > Review Mantra </a>\n<a class=\"cr2-button-dark\" target=\"_blank\" href=\"http://wordpress.org/support/view/theme-reviews/zombie-apocalypse\" title=\" Review Zombie Apocalypse \" > Review Zombie Apocalypse </a>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"http://www.cryoutcreations.eu/wordpress-themes/tempera/show-your-wordpress-theme-some-love/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"11\";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:57:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Tempera is LIVE and waiting for you!\";s: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:96:\"http://www.cryoutcreations.eu/wordpress-themes/tempera/tempera-0-9-2-is-live-and-waiting-for-you\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"http://www.cryoutcreations.eu/wordpress-themes/tempera/tempera-0-9-2-is-live-and-waiting-for-you#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Dec 2013 13:53:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Parabola\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Tempera\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"tempera\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:5:\"theme\";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:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.cryoutcreations.eu/?p=14844\";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:514:\"For all those of you that find it too much of a hustle to download and manually install themes, well, our latest theme Tempera is now live on WordPress.org so you\'re really just a click away from it. \r\n\r\nFor those that manually installed it, you can now update to the latest version. Join us after the jump for the changelog and the LIVE celebration. <a href=\"http://www.cryoutcreations.eu/wordpress-themes/tempera/tempera-0-9-2-is-live-and-waiting-for-you\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Kay\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:37552:\"<p><a href=\"http://www.cryoutcreations.eu/wp-content/uploads/2013/11/tempera09.png\"><img class=\"alignright wp-image-14285\" alt=\"Tempera\" src=\"http://www.cryoutcreations.eu/wp-content/uploads/2013/11/tempera09.png\" width=\"360\" height=\"270\" /></a>For all those of you that find it too much of a hustle to download and manually install themes, well, our latest theme Tempera is now live at WordPress.org so you’re really just a click away from it – Tempera is now officially part of the WordPress Theme Repository! <strong><a title=\"Tempera\" href=\"http://wordpress.org/themes/tempera\" target=\"_blank\">Here it is!</a></strong></p>\n<p>So now you have absolutely no reason not to drop by your new next-door neighbour, knock on her door and welcome her to the WordPress neighbourhood. It wouldn’t be a bad idea to ask your wife to bake a cake or maybe a plateful of her famously delicious brownies. Take the wife with you, bring the kids as well <em>and</em> the family dog and you can all greet her the best way you can. Make an impression!</p>\n<p>Sure, the wife may get a little jealous, the other neighbours said she’s quite a fox: still single, looks great, very flexible, goes to the gym regularly and is a vegetarian. Nobody knows what she does exactly but you get the impression that she could do pretty much anything and be great at it. And now that you’re standing at her doorstep, looking at her slender figure, man oh man, the things you’d do <del>to</del> with her.</p>\n<p>First thing that comes to mind is leave the wife, disown the children, quit your day-job and run away with her. Start a new adventure. Force yourself into a mid-life crisis, risk everything for her and no mater what happens you know there will be no regrets.</p>\n<p>You can start a life on the road, you’ve always wanted that. You’ll become a full-time blogger, she’ll be your muse and you’ll write articles of the places you’ll see, the people you’ll meet. Hell, you may even become a published writer at a certain point. There’s poetry coming out of her pores, all you have to do is put that in writing and you have enough material to last you a lifetime.</p>\n<p>And there would be love. Oh yes, there would be passionate love; you’ll learn to push all her buttons and she’ll adjust to your every need. Two will become one and one will divide into infinity. Your children will be born out of pure love and complete freedom and you’ll grow into a family. You’ll all become a caravan of love, spreading joy and freedom into the world. Through your love for Tempera, you writings and your offspring, you will become eternal – a transcendent entity that will stand even after existence itself becomes deprecated.</p>\n<p>And for those that manually installed the theme, you can now update to the latest version. The changelog since v0.9 follows:</p>\n<p><span style=\"text-decoration: underline;\">Tempera 0.9.3</span></p>\n<ul>\n<li>improved presentation page columns sizing</li>\n<li>fixed XSS vulnerability in frontend.js</li>\n<li>checked and corrected WordPress 3.8 readyness (admin styling and theme tags)</li>\n</ul>\n<p><span style=\"text-decoration: underline;\">Tempera 0.9.2</span></p>\n<div>\n<ul>\n<li>Fixed excessive pagination in custom category pages</li>\n<li>Replaced <em>query_posts</em> with <em>WP_Query</em> in page-with-intro and blog-page templates</li>\n<li>Removed the focus to the search form in 404 pages</li>\n<li>Fixed search input on Google Chrome</li>\n</ul>\n<p><span style=\"text-decoration: underline;\">Tempera 0.9.1</span></p>\n<div>\n<ul>\n<li>All external links in the Tempera Settings page now open in a new tab</li>\n<li>All info boxes in the Tempera Settings page can now be hidden</li>\n<li>Added pagination to the Presentation Page if Show Posts is enabled</li>\n<li>Removed leftover default.mo from the theme directory</li>\n<li>The <a>http://</a> protocol has been removed when enqueuing Google fonts</li>\n<li>Fixed back to top button not changing to the color of the content <span style=\"mso-spacerun: yes;\"><br />\n</span></li>\n</ul>\n</div>\n</div>\n<p><!--[if gte mso 9]><xml>\n<w:WordDocument>\n<w:View>Normal</w:View>\n<w:Zoom>0</w:Zoom>\n<w:TrackMoves/>\n<w:TrackFormatting/>\n<w:PunctuationKerning/>\n<w:ValidateAgainstSchemas/>\n<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\n<w:IgnoreMixedContent>false</w:IgnoreMixedContent>\n<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\n<w:DoNotPromoteQF/>\n<w:LidThemeOther>EN-US</w:LidThemeOther>\n<w:LidThemeAsian>X-NONE</w:LidThemeAsian>\n<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\n<w:Compatibility>\n<w:BreakWrappedTables/>\n<w:SnapToGridInCell/>\n<w:WrapTextWithPunct/>\n<w:UseAsianBreakRules/>\n<w:DontGrowAutofit/>\n<w:SplitPgBreakAndParaMark/>\n<w:EnableOpenTypeKerning/>\n<w:DontFlipMirrorIndents/>\n<w:OverrideTableStyleHps/>\n</w:Compatibility>\n<m:mathPr>\n<m:mathFont m:val=\"Cambria Math\"/>\n<m:brkBin m:val=\"before\"/>\n<m:brkBinSub m:val=\"--\"/>\n<m:smallFrac m:val=\"off\"/>\n<m:dispDef/>\n<m:lMargin m:val=\"0\"/>\n<m:rMargin m:val=\"0\"/>\n<m:defJc m:val=\"centerGroup\"/>\n<m:wrapIndent m:val=\"1440\"/>\n<m:intLim m:val=\"subSup\"/>\n<m:naryLim m:val=\"undOvr\"/>\n</m:mathPr></w:WordDocument>\n</xml><![endif]--><!--[if gte mso 9]><xml>\n<w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"false\" DefSemiHidden=\"false\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"371\">\n<w:LsdException Locked=\"false\" Priority=\"0\" QFormat=\"true\" Name=\"Normal\"/>\n<w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"heading 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"heading 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"heading 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"heading 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"heading 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"heading 7\"/>\n<w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"heading 8\"/>\n<w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"heading 9\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index 4\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index 5\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index 6\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index 7\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index 8\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index 9\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toc 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toc 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toc 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toc 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toc 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toc 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toc 7\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toc 8\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toc 9\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Normal Indent\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"footnote text\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"annotation text\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"header\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"footer\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"index heading\"/>\n<w:LsdException Locked=\"false\" Priority=\"35\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"caption\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"table of figures\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"envelope address\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"envelope return\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"footnote reference\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"annotation reference\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"line number\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"page number\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"endnote reference\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"endnote text\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"table of authorities\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"macro\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"toa heading\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Bullet\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Number\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List 4\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List 5\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Bullet 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Bullet 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Bullet 4\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Bullet 5\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Number 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Number 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Number 4\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Number 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"10\" QFormat=\"true\" Name=\"Title\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Closing\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Signature\"/>\n<w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Default Paragraph Font\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Body Text\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Body Text Indent\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Continue\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Continue 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Continue 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Continue 4\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"List Continue 5\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Message Header\"/>\n<w:LsdException Locked=\"false\" Priority=\"11\" QFormat=\"true\" Name=\"Subtitle\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Salutation\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Date\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Body Text First Indent\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Body Text First Indent 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Note Heading\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Body Text 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Body Text 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Body Text Indent 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Body Text Indent 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Block Text\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Hyperlink\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"FollowedHyperlink\"/>\n<w:LsdException Locked=\"false\" Priority=\"22\" QFormat=\"true\" Name=\"Strong\"/>\n<w:LsdException Locked=\"false\" Priority=\"20\" QFormat=\"true\" Name=\"Emphasis\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Document Map\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Plain Text\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"E-mail Signature\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Top of Form\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Bottom of Form\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Normal (Web)\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Acronym\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Address\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Cite\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Code\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Definition\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Keyboard\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Preformatted\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Sample\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Typewriter\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"HTML Variable\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Normal Table\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"annotation subject\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"No List\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Outline List 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Outline List 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Outline List 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Simple 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Simple 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Simple 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Classic 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Classic 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Classic 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Classic 4\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Colorful 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Colorful 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Colorful 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Columns 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Columns 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Columns 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Columns 4\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Columns 5\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Grid 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Grid 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Grid 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Grid 4\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Grid 5\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Grid 6\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Grid 7\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Grid 8\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table List 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table List 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table List 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table List 4\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table List 5\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table List 6\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table List 7\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table List 8\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table 3D effects 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table 3D effects 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table 3D effects 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Contemporary\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Elegant\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Professional\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Subtle 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Subtle 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Web 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Web 2\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Web 3\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Balloon Text\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" Name=\"Table Grid\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Table Theme\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" Name=\"Placeholder Text\"/>\n<w:LsdException Locked=\"false\" Priority=\"1\" QFormat=\"true\" Name=\"No Spacing\"/>\n<w:LsdException Locked=\"false\" Priority=\"60\" Name=\"Light Shading\"/>\n<w:LsdException Locked=\"false\" Priority=\"61\" Name=\"Light List\"/>\n<w:LsdException Locked=\"false\" Priority=\"62\" Name=\"Light Grid\"/>\n<w:LsdException Locked=\"false\" Priority=\"63\" Name=\"Medium Shading 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"64\" Name=\"Medium Shading 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"65\" Name=\"Medium List 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"66\" Name=\"Medium List 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"67\" Name=\"Medium Grid 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"68\" Name=\"Medium Grid 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"69\" Name=\"Medium Grid 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"70\" Name=\"Dark List\"/>\n<w:LsdException Locked=\"false\" Priority=\"71\" Name=\"Colorful Shading\"/>\n<w:LsdException Locked=\"false\" Priority=\"72\" Name=\"Colorful List\"/>\n<w:LsdException Locked=\"false\" Priority=\"73\" Name=\"Colorful Grid\"/>\n<w:LsdException Locked=\"false\" Priority=\"60\" Name=\"Light Shading Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"61\" Name=\"Light List Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"62\" Name=\"Light Grid Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"63\" Name=\"Medium Shading 1 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"64\" Name=\"Medium Shading 2 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"65\" Name=\"Medium List 1 Accent 1\"/>\n<w:LsdException Locked=\"false\" SemiHidden=\"true\" Name=\"Revision\"/>\n<w:LsdException Locked=\"false\" Priority=\"34\" QFormat=\"true\" Name=\"List Paragraph\"/>\n<w:LsdException Locked=\"false\" Priority=\"29\" QFormat=\"true\" Name=\"Quote\"/>\n<w:LsdException Locked=\"false\" Priority=\"30\" QFormat=\"true\" Name=\"Intense Quote\"/>\n<w:LsdException Locked=\"false\" Priority=\"66\" Name=\"Medium List 2 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"67\" Name=\"Medium Grid 1 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"68\" Name=\"Medium Grid 2 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"69\" Name=\"Medium Grid 3 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"70\" Name=\"Dark List Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"71\" Name=\"Colorful Shading Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"72\" Name=\"Colorful List Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"73\" Name=\"Colorful Grid Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"60\" Name=\"Light Shading Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"61\" Name=\"Light List Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"62\" Name=\"Light Grid Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"63\" Name=\"Medium Shading 1 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"64\" Name=\"Medium Shading 2 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"65\" Name=\"Medium List 1 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"66\" Name=\"Medium List 2 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"67\" Name=\"Medium Grid 1 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"68\" Name=\"Medium Grid 2 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"69\" Name=\"Medium Grid 3 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"70\" Name=\"Dark List Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"71\" Name=\"Colorful Shading Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"72\" Name=\"Colorful List Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"73\" Name=\"Colorful Grid Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"60\" Name=\"Light Shading Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"61\" Name=\"Light List Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"62\" Name=\"Light Grid Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"63\" Name=\"Medium Shading 1 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"64\" Name=\"Medium Shading 2 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"65\" Name=\"Medium List 1 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"66\" Name=\"Medium List 2 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"67\" Name=\"Medium Grid 1 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"68\" Name=\"Medium Grid 2 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"69\" Name=\"Medium Grid 3 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"70\" Name=\"Dark List Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"71\" Name=\"Colorful Shading Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"72\" Name=\"Colorful List Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"73\" Name=\"Colorful Grid Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"60\" Name=\"Light Shading Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"61\" Name=\"Light List Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"62\" Name=\"Light Grid Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"63\" Name=\"Medium Shading 1 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"64\" Name=\"Medium Shading 2 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"65\" Name=\"Medium List 1 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"66\" Name=\"Medium List 2 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"67\" Name=\"Medium Grid 1 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"68\" Name=\"Medium Grid 2 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"69\" Name=\"Medium Grid 3 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"70\" Name=\"Dark List Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"71\" Name=\"Colorful Shading Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"72\" Name=\"Colorful List Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"73\" Name=\"Colorful Grid Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"60\" Name=\"Light Shading Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"61\" Name=\"Light List Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"62\" Name=\"Light Grid Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"63\" Name=\"Medium Shading 1 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"64\" Name=\"Medium Shading 2 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"65\" Name=\"Medium List 1 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"66\" Name=\"Medium List 2 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"67\" Name=\"Medium Grid 1 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"68\" Name=\"Medium Grid 2 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"69\" Name=\"Medium Grid 3 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"70\" Name=\"Dark List Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"71\" Name=\"Colorful Shading Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"72\" Name=\"Colorful List Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"73\" Name=\"Colorful Grid Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"60\" Name=\"Light Shading Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"61\" Name=\"Light List Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"62\" Name=\"Light Grid Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"63\" Name=\"Medium Shading 1 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"64\" Name=\"Medium Shading 2 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"65\" Name=\"Medium List 1 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"66\" Name=\"Medium List 2 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"67\" Name=\"Medium Grid 1 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"68\" Name=\"Medium Grid 2 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"69\" Name=\"Medium Grid 3 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"70\" Name=\"Dark List Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"71\" Name=\"Colorful Shading Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"72\" Name=\"Colorful List Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"73\" Name=\"Colorful Grid Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"19\" QFormat=\"true\" Name=\"Subtle Emphasis\"/>\n<w:LsdException Locked=\"false\" Priority=\"21\" QFormat=\"true\" Name=\"Intense Emphasis\"/>\n<w:LsdException Locked=\"false\" Priority=\"31\" QFormat=\"true\" Name=\"Subtle Reference\"/>\n<w:LsdException Locked=\"false\" Priority=\"32\" QFormat=\"true\" Name=\"Intense Reference\"/>\n<w:LsdException Locked=\"false\" Priority=\"33\" QFormat=\"true\" Name=\"Book Title\"/>\n<w:LsdException Locked=\"false\" Priority=\"37\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" Name=\"Bibliography\"/>\n<w:LsdException Locked=\"false\" Priority=\"39\" SemiHidden=\"true\" UnhideWhenUsed=\"true\" QFormat=\"true\" Name=\"TOC Heading\"/>\n<w:LsdException Locked=\"false\" Priority=\"41\" Name=\"Plain Table 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"42\" Name=\"Plain Table 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"43\" Name=\"Plain Table 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"44\" Name=\"Plain Table 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"45\" Name=\"Plain Table 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"40\" Name=\"Grid Table Light\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"Grid Table 1 Light\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"Grid Table 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"Grid Table 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"Grid Table 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"Grid Table 5 Dark\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"Grid Table 6 Colorful\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"Grid Table 7 Colorful\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"Grid Table 1 Light Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"Grid Table 2 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"Grid Table 3 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"Grid Table 4 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"Grid Table 5 Dark Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"Grid Table 6 Colorful Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"Grid Table 7 Colorful Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"Grid Table 1 Light Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"Grid Table 2 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"Grid Table 3 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"Grid Table 4 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"Grid Table 5 Dark Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"Grid Table 6 Colorful Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"Grid Table 7 Colorful Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"Grid Table 1 Light Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"Grid Table 2 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"Grid Table 3 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"Grid Table 4 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"Grid Table 5 Dark Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"Grid Table 6 Colorful Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"Grid Table 7 Colorful Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"Grid Table 1 Light Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"Grid Table 2 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"Grid Table 3 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"Grid Table 4 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"Grid Table 5 Dark Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"Grid Table 6 Colorful Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"Grid Table 7 Colorful Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"Grid Table 1 Light Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"Grid Table 2 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"Grid Table 3 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"Grid Table 4 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"Grid Table 5 Dark Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"Grid Table 6 Colorful Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"Grid Table 7 Colorful Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"Grid Table 1 Light Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"Grid Table 2 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"Grid Table 3 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"Grid Table 4 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"Grid Table 5 Dark Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"Grid Table 6 Colorful Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"Grid Table 7 Colorful Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"List Table 1 Light\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"List Table 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"List Table 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"List Table 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"List Table 5 Dark\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"List Table 6 Colorful\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"List Table 7 Colorful\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"List Table 1 Light Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"List Table 2 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"List Table 3 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"List Table 4 Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"List Table 5 Dark Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"List Table 6 Colorful Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"List Table 7 Colorful Accent 1\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"List Table 1 Light Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"List Table 2 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"List Table 3 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"List Table 4 Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"List Table 5 Dark Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"List Table 6 Colorful Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"List Table 7 Colorful Accent 2\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"List Table 1 Light Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"List Table 2 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"List Table 3 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"List Table 4 Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"List Table 5 Dark Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"List Table 6 Colorful Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"List Table 7 Colorful Accent 3\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"List Table 1 Light Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"List Table 2 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"List Table 3 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"List Table 4 Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"List Table 5 Dark Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"List Table 6 Colorful Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"List Table 7 Colorful Accent 4\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"List Table 1 Light Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"List Table 2 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"List Table 3 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"List Table 4 Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"List Table 5 Dark Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"List Table 6 Colorful Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"List Table 7 Colorful Accent 5\"/>\n<w:LsdException Locked=\"false\" Priority=\"46\" Name=\"List Table 1 Light Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"47\" Name=\"List Table 2 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"48\" Name=\"List Table 3 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"49\" Name=\"List Table 4 Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"50\" Name=\"List Table 5 Dark Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"51\" Name=\"List Table 6 Colorful Accent 6\"/>\n<w:LsdException Locked=\"false\" Priority=\"52\" Name=\"List Table 7 Colorful Accent 6\"/>\n</w:LatentStyles>\n</xml><![endif]--><!--[if gte mso 10]>\n\n\n<style>\n /* Style Definitions */\ntable.MsoNormalTable\n{mso-style-name:\"Table Normal\";\nmso-tstyle-rowband-size:0;\nmso-tstyle-colband-size:0;\nmso-style-noshow:yes;\nmso-style-priority:99;\nmso-style-parent:\"\";\nmso-padding-alt:0in 5.4pt 0in 5.4pt;\nmso-para-margin-top:0in;\nmso-para-margin-right:0in;\nmso-para-margin-bottom:8.0pt;\nmso-para-margin-left:0in;\nline-height:107%;\nmso-pagination:widow-orphan;\nfont-size:11.0pt;\nfont-family:\"Calibri\",\"sans-serif\";\nmso-ascii-font-family:Calibri;\nmso-ascii-theme-font:minor-latin;\nmso-hansi-font-family:Calibri;\nmso-hansi-theme-font:minor-latin;}\n</style>\n\n<![endif]--></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://www.cryoutcreations.eu/wordpress-themes/tempera/tempera-0-9-2-is-live-and-waiting-for-you/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"50\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Mantra 2.3.2 is retracing its steps\";s: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:89:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-2-is-retracing-its-steps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-2-is-retracing-its-steps#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Dec 2013 20:45:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:6:\"Mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"mantra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://www.cryoutcreations.eu/?p=14784\";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:410:\"Mantra has second thoughts and decided to redo two of the changes it has already done, but in a different way. Additionally, it fixed some responsiveness issues and got half ready for Wordpress 3.8.\r\n\r\nContinue reading for a complete list of changes... <a href=\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-2-is-retracing-its-steps\">Read the rest <span class=\"meta-nav\">→ </span></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Zed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:782:\"<p>Mantra had second thoughts and decided to redo two of the changes it has already done, but in a different way. Additionally, it fixed some responsiveness issues and got half ready for WordPress 3.8.</p>\n<p>Complete changelog:</p>\n<div>\n<ul>\n<li>re-redesigned captions (added left/right padding back)</li>\n<li>corrected (enlarged) social icons sizes in sidebars</li>\n<li>corrected presentation page columns responsiveness on larger mobile devices</li>\n<li>fixed incorrect pagination on custom category pages</li>\n<li>fixed custom css style output missing proper HTML tag</li>\n<li>fixed presentation page styling being displayed after the mobile style, breaking the layout</li>\n<li>fixed XSS vulnerability in frontend.js</li>\n<li>(almost) ready for WordPress 3.8</li>\n</ul>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://www.cryoutcreations.eu/wordpress-themes/mantra/mantra-2-3-2-is-retracing-its-steps/feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"13\";s: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:45:\"http://www.cryoutcreations.eu/cat/mantra/feed\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"type\";i:128;s:7:\"headers\";a:13:{s:6:\"server\";s:6:\"Apache\";s:12:\"x-powered-by\";s:10:\"PHP/5.4.43\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:7:\"expires\";s:29:\"Thu, 20 Aug 2015 17:28:46 GMT\";s:6:\"pragma\";s:6:\"public\";s:13:\"cache-control\";s:20:\"max-age=3600, public\";s:10:\"x-pingback\";s:40:\"http://www.cryoutcreations.eu/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 20 Aug 2015 15:14:34 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:14:\"content-length\";s:5:\"88697\";s:4:\"date\";s:29:\"Thu, 20 Aug 2015 17:11:20 GMT\";s:10:\"connection\";s:5:\"close\";s:7:\"x-cache\";s:3:\"HIT\";}s:5:\"build\";s:14:\"20150511173052\";}','no'),(285,'ma_options','a:183:{s:11:\"mantra_side\";s:4:\"2cSl\";s:16:\"mantra_dimselect\";s:8:\"Relative\";s:16:\"mantra_sidewidth\";s:3:\"500\";s:14:\"mantra_sidebar\";s:3:\"710\";s:19:\"mantra_sidewidthRel\";s:2:\"50\";s:17:\"mantra_sidebarRel\";s:2:\"24\";s:13:\"mantra_mobile\";s:7:\"Disable\";s:11:\"mantra_zoom\";s:1:\"1\";s:14:\"mantra_hheight\";i:200;s:14:\"mantra_hcenter\";s:1:\"1\";s:17:\"mantra_siteheader\";s:5:\"Empty\";s:17:\"mantra_logoupload\";s:99:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732.jpg\";s:22:\"mantra_headermargintop\";i:20;s:23:\"mantra_headermarginleft\";i:40;s:18:\"mantra_menurounded\";s:6:\"Enable\";s:14:\"mantra_favicon\";s:0:\"\";s:16:\"mantra_frontpage\";s:7:\"Disable\";s:17:\"mantra_frontposts\";s:7:\"Disable\";s:22:\"mantra_frontpostscount\";i:5;s:20:\"mantra_fpsliderwidth\";i:800;s:21:\"mantra_fpsliderheight\";i:250;s:19:\"mantra_fpslideranim\";s:6:\"random\";s:26:\"mantra_fpsliderborderwidth\";i:10;s:26:\"mantra_fpsliderbordercolor\";s:7:\"#EEEEEE\";s:19:\"mantra_fpslidertime\";s:3:\"750\";s:20:\"mantra_fpsliderpause\";s:4:\"5000\";s:18:\"mantra_fpslidernav\";s:7:\"Bullets\";s:21:\"mantra_fpsliderarrows\";s:16:\"Visible on Hover\";s:16:\"mantra_slideType\";s:13:\"Custom Slides\";s:20:\"mantra_slideSpecific\";s:0:\"\";s:17:\"mantra_slideCateg\";s:0:\"\";s:18:\"mantra_slideNumber\";i:5;s:17:\"mantra_sliderimg1\";s:91:\"http://thebeloitpod.com/wordpress1/wp-content/themes/mantra/images/slider/mantra-slide1.jpg\";s:19:\"mantra_slidertitle1\";s:28:\"This is your caption\'s title\";s:18:\"mantra_slidertext1\";s:164:\"And this is the text that could accompany it. It is all optional so if you delete it in the Mantra Settings there will be no more caption with the black background.\";s:18:\"mantra_sliderlink1\";s:0:\"\";s:17:\"mantra_sliderimg2\";s:91:\"http://thebeloitpod.com/wordpress1/wp-content/themes/mantra/images/slider/mantra-slide2.jpg\";s:19:\"mantra_slidertitle2\";s:33:\"This is yet another caption title\";s:18:\"mantra_slidertext2\";s:153:\"And some more text to give you as an example. You can use <a href=\'http://www.cryoutcreations.eu\'>links</a> and other type of <b>HTML</b> <i>formats</i>.\";s:18:\"mantra_sliderlink2\";s:0:\"\";s:17:\"mantra_sliderimg3\";s:0:\"\";s:19:\"mantra_slidertitle3\";s:0:\"\";s:18:\"mantra_slidertext3\";s:0:\"\";s:18:\"mantra_sliderlink3\";s:0:\"\";s:17:\"mantra_sliderimg4\";s:0:\"\";s:19:\"mantra_slidertitle4\";s:0:\"\";s:18:\"mantra_slidertext4\";s:0:\"\";s:18:\"mantra_sliderlink4\";s:0:\"\";s:17:\"mantra_sliderimg5\";s:0:\"\";s:19:\"mantra_slidertitle5\";s:0:\"\";s:18:\"mantra_slidertext5\";s:0:\"\";s:18:\"mantra_sliderlink5\";s:0:\"\";s:16:\"mantra_nrcolumns\";s:1:\"4\";s:21:\"mantra_colimageheight\";i:120;s:21:\"mantra_columnreadmore\";s:9:\"Read more\";s:17:\"mantra_columnimg1\";s:91:\"http://thebeloitpod.com/wordpress1/wp-content/themes/mantra/images/slider/mantra-column.jpg\";s:19:\"mantra_columntitle1\";s:9:\"Hi there!\";s:18:\"mantra_columntext1\";s:212:\"You can also have some text here. Just like with the slider, it\'s all optional (including the title and the link inputs). All you need is an image, unless you want the Mantra image above to follow you everywhere.\";s:18:\"mantra_columnlink1\";s:0:\"\";s:17:\"mantra_columnimg2\";s:91:\"http://thebeloitpod.com/wordpress1/wp-content/themes/mantra/images/slider/mantra-column.jpg\";s:19:\"mantra_columntitle2\";s:10:\" HTML tags\";s:18:\"mantra_columntext2\";s:116:\"You can also have <a href=\'http://www.cryoutcreations.eu\'>links</a> here as well as some <strong>HTML tags</strong>.\";s:18:\"mantra_columnlink2\";s:0:\"\";s:17:\"mantra_columnimg3\";s:91:\"http://thebeloitpod.com/wordpress1/wp-content/themes/mantra/images/slider/mantra-column.jpg\";s:19:\"mantra_columntitle3\";s:0:\"\";s:18:\"mantra_columntext3\";s:0:\"\";s:18:\"mantra_columnlink3\";s:0:\"\";s:17:\"mantra_columnimg4\";s:91:\"http://thebeloitpod.com/wordpress1/wp-content/themes/mantra/images/slider/mantra-column.jpg\";s:19:\"mantra_columntitle4\";s:0:\"\";s:18:\"mantra_columntext4\";s:0:\"\";s:18:\"mantra_columnlink4\";s:0:\"\";s:17:\"mantra_fronttext1\";s:21:\"This could be a title\";s:17:\"mantra_fronttext2\";s:26:\"And this is a second title\";s:22:\"mantra_fronttitlecolor\";s:7:\"#333333\";s:17:\"mantra_fronttext3\";s:290:\"And here you could have a whole lot of text. Or not. It\'s all up to you. Deleting all text inside the appropriate input in the Mantra Settings will remove this whole text zone. It can also contain some HTML tags.<br /> Just try everything out and see what suits you. Have fun and good luck!\";s:17:\"mantra_fronttext4\";s:0:\"\";s:17:\"mantra_fontfamily\";s:47:\"Futura, Century Gothic, AppleGothic, sans-serif\";s:17:\"mantra_googlefont\";s:0:\"\";s:15:\"mantra_fontsize\";s:4:\"16px\";s:16:\"mantra_fonttitle\";s:36:\"Myriad Pro, Myriad,Arial, sans-serif\";s:22:\"mantra_googlefonttitle\";s:0:\"\";s:19:\"mantra_headfontsize\";s:4:\"22px\";s:15:\"mantra_fontside\";s:39:\"Century Gothic, AppleGothic, sans-serif\";s:21:\"mantra_googlefontside\";s:0:\"\";s:19:\"mantra_sidefontsize\";s:7:\"Default\";s:20:\"mantra_fontsubheader\";s:47:\"Futura, Century Gothic, AppleGothic, sans-serif\";s:26:\"mantra_googlefontsubheader\";s:0:\"\";s:16:\"mantra_textalign\";s:7:\"Default\";s:16:\"mantra_parmargin\";s:5:\"0.0em\";s:16:\"mantra_parindent\";s:3:\"0px\";s:19:\"mantra_headerindent\";s:7:\"Disable\";s:17:\"mantra_lineheight\";s:7:\"Default\";s:16:\"mantra_wordspace\";s:7:\"Default\";s:18:\"mantra_letterspace\";s:7:\"Default\";s:17:\"mantra_textshadow\";s:7:\"Disable\";s:16:\"mantra_backcolor\";s:7:\"#000000\";s:18:\"mantra_headercolor\";s:7:\"#000000\";s:16:\"mantra_contentbg\";s:7:\"#000000\";s:13:\"mantra_menubg\";s:7:\"#373737\";s:11:\"mantra_s1bg\";s:7:\"#373737\";s:11:\"mantra_s2bg\";s:7:\"#373737\";s:17:\"mantra_titlecolor\";s:7:\"#000000\";s:23:\"mantra_descriptioncolor\";s:7:\"#000000\";s:19:\"mantra_contentcolor\";s:7:\"#e2e2e2\";s:17:\"mantra_linkscolor\";s:7:\"#16cc0d\";s:17:\"mantra_hovercolor\";s:7:\"#ff12d6\";s:20:\"mantra_headtextcolor\";s:7:\"#e2e2e2\";s:20:\"mantra_headtexthover\";s:7:\"#373737\";s:24:\"mantra_sideheadbackcolor\";s:7:\"#000000\";s:24:\"mantra_sideheadtextcolor\";s:7:\"#16cc0d\";s:21:\"mantra_prefootercolor\";s:7:\"#222222\";s:18:\"mantra_footercolor\";s:7:\"#171717\";s:19:\"mantra_footerheader\";s:7:\"#16cc0d\";s:17:\"mantra_footertext\";s:7:\"#16cc0d\";s:18:\"mantra_footerhover\";s:7:\"#888888\";s:18:\"mantra_breadcrumbs\";s:7:\"Disable\";s:17:\"mantra_pagination\";s:6:\"Enable\";s:16:\"mantra_menualign\";s:6:\"center\";s:12:\"mantra_image\";s:4:\"Four\";s:14:\"mantra_caption\";s:5:\"Light\";s:10:\"mantra_pin\";s:10:\"mantra_dot\";s:17:\"mantra_sidebullet\";s:11:\"square_dark\";s:15:\"mantra_metaback\";s:4:\"None\";s:20:\"mantra_postseparator\";s:4:\"Hide\";s:18:\"mantra_contentlist\";s:4:\"Hide\";s:16:\"mantra_pagetitle\";s:4:\"Show\";s:17:\"mantra_categtitle\";s:4:\"Hide\";s:13:\"mantra_tables\";s:7:\"Disable\";s:14:\"mantra_backtop\";s:6:\"Enable\";s:14:\"mantra_comtext\";s:4:\"Show\";s:16:\"mantra_comclosed\";s:15:\"Hide everywhere\";s:13:\"mantra_comoff\";s:4:\"Show\";s:18:\"mantra_postcomlink\";s:4:\"Show\";s:15:\"mantra_postdate\";s:4:\"Show\";s:15:\"mantra_posttime\";s:4:\"Hide\";s:17:\"mantra_postauthor\";s:4:\"Show\";s:16:\"mantra_postcateg\";s:4:\"Show\";s:16:\"mantra_postmetas\";s:4:\"Show\";s:14:\"mantra_posttag\";s:4:\"Show\";s:15:\"mantra_postbook\";s:4:\"Show\";s:18:\"mantra_excerpthome\";s:9:\"Full Post\";s:20:\"mantra_excerptsticky\";s:9:\"Full Post\";s:21:\"mantra_excerptarchive\";s:9:\"Full Post\";s:19:\"mantra_excerptwords\";i:50;s:21:\"mantra_magazinelayout\";s:7:\"Disable\";s:18:\"mantra_excerptdots\";s:4:\" …\";s:18:\"mantra_excerptcont\";s:17:\" Continue reading\";s:18:\"mantra_excerpttags\";s:7:\"Disable\";s:12:\"mantra_fpost\";s:6:\"Enable\";s:16:\"mantra_fpostlink\";s:1:\"1\";s:12:\"mantra_fauto\";s:7:\"Disable\";s:13:\"mantra_falign\";s:6:\"Center\";s:13:\"mantra_fwidth\";i:250;s:14:\"mantra_fheight\";i:150;s:14:\"mantra_fheader\";s:7:\"Disable\";s:14:\"mantra_social1\";s:8:\"Facebook\";s:14:\"mantra_social2\";s:45:\"https://www.facebook.com/thebeloitpod?fref=ts\";s:14:\"mantra_social3\";s:7:\"Twitter\";s:14:\"mantra_social4\";s:32:\"https://twitter.com/thebeloitpod\";s:14:\"mantra_social5\";s:3:\"RSS\";s:14:\"mantra_social6\";s:34:\"http://thebeloitpod.libsyn.com/rss\";s:14:\"mantra_social7\";s:10:\"SoundCloud\";s:14:\"mantra_social8\";s:46:\"https://soundcloud.com/the-beloit-podcast?ls=1\";s:14:\"mantra_social9\";s:7:\"YouTube\";s:15:\"mantra_social10\";s:56:\"https://www.youtube.com/channel/UC--5kiupTN5WJRoRlk9W2Ew\";s:22:\"mantra_socialsdisplay2\";s:1:\"1\";s:22:\"mantra_socialsdisplay3\";s:1:\"1\";s:10:\"mantra_seo\";s:6:\"Enable\";s:20:\"mantra_seo_home_desc\";s:67:\"Beloit Wisconsin- our people and places: past, present, and future.\";s:19:\"mantra_seo_gen_desc\";s:4:\"Auto\";s:17:\"mantra_seo_author\";s:9:\"ReeseWood\";s:16:\"mantra_copyright\";s:0:\"\";s:16:\"mantra_customcss\";s:23:\"/* Mantra Custom CSS */\";s:15:\"mantra_customjs\";s:0:\"\";s:13:\"mantra_submit\";s:12:\"Save Changes\";s:22:\"mantra_socialsdisplay0\";s:1:\"0\";s:22:\"mantra_socialsdisplay1\";s:1:\"0\";s:22:\"mantra_socialsdisplay4\";s:1:\"0\";s:22:\"mantra_socialsdisplay5\";s:1:\"0\";s:18:\"mantra_googlefont2\";s:0:\"\";s:23:\"mantra_googlefonttitle2\";s:0:\"\";s:22:\"mantra_googlefontside2\";s:0:\"\";s:27:\"mantra_googlefontsubheader2\";s:0:\"\";}','yes'),(290,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(451,'category_children','a:0:{}','yes'),(980,'aal_notimescustom','','yes'),(299,'xyz_credit_link','0','yes'),(317,'fs_contact_form1','a:167:{s:9:\"form_name\";s:16:\"Money Bomb entry\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:8:\"email_to\";s:32:\"Webmaster,thebeloitpod@gmail.com\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:8:\"Contact:\";s:10:\"email_from\";s:0:\"\";s:14:\"email_reply_to\";s:0:\"\";s:6:\"fields\";a:4:{i:0;a:21:{s:8:\"standard\";s:1:\"1\";s:6:\"delete\";s:5:\"false\";s:5:\"label\";s:5:\"Name:\";s:4:\"type\";s:4:\"text\";s:4:\"slug\";s:9:\"full_name\";s:3:\"req\";s:4:\"true\";s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:7:\"max_len\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:6:\"inline\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";}i:1;a:21:{s:8:\"standard\";s:1:\"2\";s:6:\"delete\";s:5:\"false\";s:5:\"label\";s:6:\"Email:\";s:4:\"type\";s:4:\"text\";s:4:\"slug\";s:5:\"email\";s:3:\"req\";s:4:\"true\";s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:7:\"max_len\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:6:\"inline\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";}i:2;a:21:{s:8:\"standard\";s:1:\"3\";s:6:\"delete\";s:5:\"false\";s:5:\"label\";s:8:\"Subject:\";s:4:\"type\";s:4:\"text\";s:4:\"slug\";s:7:\"subject\";s:3:\"req\";s:4:\"true\";s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:7:\"max_len\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:6:\"inline\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";}i:3;a:21:{s:8:\"standard\";s:1:\"4\";s:6:\"delete\";s:5:\"false\";s:5:\"label\";s:8:\"Message:\";s:4:\"type\";s:8:\"textarea\";s:4:\"slug\";s:7:\"message\";s:3:\"req\";s:4:\"true\";s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:7:\"max_len\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:6:\"inline\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";}}s:11:\"name_format\";s:4:\"name\";s:16:\"auto_fill_enable\";s:4:\"true\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:33:\"doc,docx,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:12:\"title_border\";s:12:\"Contact Form\";s:14:\"external_style\";s:5:\"false\";s:10:\"form_style\";s:27:\"width:99%; max-width:555px;\";s:14:\"left_box_style\";s:39:\"float:left; width:55%; max-width:270px;\";s:15:\"right_box_style\";s:24:\"float:left; width:235px;\";s:11:\"clear_style\";s:11:\"clear:both;\";s:16:\"field_left_style\";s:70:\"clear:left; float:left; width:99%; max-width:550px; margin-right:10px;\";s:18:\"field_follow_style\";s:58:\"float:left; padding-left:10px; width:99%; max-width:250px;\";s:21:\"field_prefollow_style\";s:70:\"clear:left; float:left; width:99%; max-width:250px; margin-right:10px;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_image_style\";s:72:\"border-style:none; margin:0; padding:0px; padding-right:5px; float:left;\";s:26:\"captcha_reload_image_style\";s:64:\"border-style:none; margin:0; padding:0px; vertical-align:bottom;\";s:16:\"submit_div_style\";s:46:\"text-align:left; clear:both; padding-top:15px;\";s:12:\"border_style\";s:65:\"border:1px solid black; width:99%; max-width:550px; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:19:\"required_text_style\";s:16:\"text-align:left;\";s:10:\"hint_style\";s:38:\"font-size:x-small; font-weight:normal;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:14:\"redirect_style\";s:16:\"text-align:left;\";s:14:\"fieldset_style\";s:65:\"border:1px solid black; width:97%; max-width:500px; padding:10px;\";s:11:\"label_style\";s:16:\"text-align:left;\";s:18:\"option_label_style\";s:15:\"display:inline;\";s:11:\"field_style\";s:54:\"text-align:left; margin:0; width:99%; max-width:250px;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:14:\"textarea_style\";s:68:\"text-align:left; margin:0; width:99%; max-width:250px; height:120px;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:14:\"checkbox_style\";s:24:\"width:22px; height:32px;\";s:11:\"radio_style\";s:24:\"width:22px; height:32px;\";s:17:\"placeholder_style\";s:27:\"opacity:0.6; color:#333333;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:18:\"vcita_button_style\";s:156:\"text-decoration:none; display:block; text-align:center; background:linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); color:#fff !important; padding:8px;\";s:22:\"vcita_div_button_style\";s:63:\"border-left:1px dashed #ccc; margin-top:25px; padding:8px 20px;\";s:16:\"powered_by_style\";s:74:\"font-size:x-small; font-weight:normal; padding-top:5px; text-align:center;\";s:22:\"req_field_label_enable\";s:4:\"true\";s:16:\"tooltip_required\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:1:\"*\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:16:\"title_submitting\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:17:\"text_print_button\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:20:\"error_contact_select\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:12:\"error_select\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:17:\"error_email_check\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:9:\"error_url\";s:0:\"\";s:10:\"error_date\";s:0:\"\";s:10:\"error_time\";s:0:\"\";s:12:\"error_maxlen\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_spambot\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:18:\"captcha_perm_level\";s:4:\"read\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:20:\"domain_protect_names\";s:0:\"\";s:22:\"auto_respond_from_name\";s:18:\"The Beloit Podcast\";s:23:\"auto_respond_from_email\";s:22:\"thebeloitpod@gmail.com\";s:21:\"auto_respond_reply_to\";s:22:\"thebeloitpod@gmail.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";i:3;s:12:\"redirect_url\";s:34:\"http://thebeloitpod.com/wordpress1\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:17:\"submit_attributes\";s:0:\"\";s:15:\"form_attributes\";s:0:\"\";s:13:\"anchor_enable\";s:4:\"true\";s:22:\"enable_submit_oneclick\";s:4:\"true\";s:15:\"after_form_note\";s:0:\"\";s:17:\"success_page_html\";s:0:\"\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:18:\"sender_info_enable\";s:4:\"true\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:24:\"silent_conditional_field\";s:0:\"\";s:24:\"silent_conditional_value\";s:0:\"\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:14:\"vcita_approved\";s:5:\"false\";s:9:\"vcita_uid\";s:0:\"\";s:11:\"vcita_email\";s:0:\"\";s:15:\"vcita_email_new\";s:22:\"thebeloitpod@gmail.com\";s:16:\"vcita_first_name\";s:0:\"\";s:15:\"vcita_last_name\";s:0:\"\";s:29:\"vcita_scheduling_button_label\";s:23:\"Schedule an Appointment\";s:26:\"vcita_scheduling_link_text\";s:68:\"Click above to schedule an appointment using vCita Online Scheduling\";s:19:\"email_from_enforced\";s:5:\"false\";s:21:\"preserve_space_enable\";s:5:\"false\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:15:\"email_check_dns\";s:5:\"false\";s:16:\"email_check_easy\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:14:\"captcha_enable\";s:5:\"false\";s:13:\"captcha_small\";s:5:\"false\";s:16:\"email_hide_empty\";s:5:\"false\";s:22:\"email_keep_attachments\";s:5:\"false\";s:17:\"print_form_enable\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:15:\"honeypot_enable\";s:5:\"false\";s:14:\"redirect_query\";s:5:\"false\";s:18:\"redirect_email_off\";s:5:\"false\";s:16:\"silent_email_off\";s:5:\"false\";s:16:\"export_email_off\";s:5:\"false\";s:19:\"ex_fields_after_msg\";s:5:\"false\";s:18:\"email_inline_label\";s:5:\"false\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:13:\"border_enable\";s:5:\"false\";s:13:\"aria_required\";s:5:\"false\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:23:\"vcita_scheduling_button\";s:5:\"false\";s:10:\"vcita_link\";s:5:\"false\";}','yes'),(1319,'_transient_timeout_si_contact_form_info','1439067508','no'),(1320,'_transient_si_contact_form_info','O:8:\"stdClass\":20:{s:4:\"name\";s:24:\"Fast Secure Contact Form\";s:4:\"slug\";s:15:\"si-contact-form\";s:7:\"version\";s:6:\"4.0.37\";s:6:\"author\";s:85:\"<a href=\"http://www.642weather.com/weather/scripts.php\">Mike Challis, Ken Carlson</a>\";s:14:\"author_profile\";s:36:\"//profiles.wordpress.org/mikechallis\";s:12:\"contributors\";a:1:{s:12:\"Mike Challis\";s:36:\"//profiles.wordpress.org/mikechallis\";}s:8:\"requires\";s:5:\"3.4.2\";s:6:\"tested\";s:5:\"4.2.4\";s:13:\"compatibility\";a:1:{s:5:\"4.2.2\";a:2:{s:6:\"4.0.36\";a:3:{i:0;i:100;i:1;i:3;i:2;i:3;}s:6:\"4.0.37\";a:3:{i:0;i:91;i:1;i:11;i:2;i:10;}}}s:6:\"rating\";d:94;s:11:\"num_ratings\";s:3:\"412\";s:7:\"ratings\";a:5:{i:5;s:3:\"359\";i:4;s:2:\"23\";i:3;s:1:\"6\";i:2;s:2:\"10\";i:1;s:2:\"14\";}s:10:\"downloaded\";i:5823026;s:12:\"last_updated\";s:21:\"2015-05-26 5:41am GMT\";s:5:\"added\";s:10:\"2009-08-27\";s:8:\"homepage\";s:37:\"http://www.FastSecureContactForm.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:7847:\"<p>Easily create and add forms to WordPress. Fields are easy to add, remove, and re-order. The contact form will let the user send emails to a site\'s admin, and also send a meeting request to talk over phone or video.</p>\n\n<p><div class=\'video\'></div></p>\n\n<p>Features: easy form edit, multiple forms, confirmation emails, no templates to mess with, and an option to redirect visitors to any URL after the message is sent. Includes CAPTCHA and Akismet support to block spammers. Spam is no longer a problem. You can add extra fields of any type: text, textarea, checkbox, checkbox-multiple, radio, select, select-multiple, attachment, date, time, hidden, password, and fieldset.</p>\n\n<ul>\n<li><a href=\"http://www.fastsecurecontactform.com/\">FastSecureContactForm.com</a></li>\n<li><a href=\"http://downloads.wordpress.org/plugin/si-contact-form.zip\">Download WordPress Plugin Version</a></li>\n<li><a href=\"http://www.fastsecurecontactform.com/download-php-script\">Download PHP Script Version</a></li>\n</ul>\n\n<h4>Help Keep This Plugin Free</h4>\n\n<p>If you find this plugin useful to you, please consider <a href=\"https://www.fastsecurecontactform.com/donate\"><strong>making a donation</strong></a> to help contribute to my time invested and to further development. Thanks for your kind support! - <a href=\"http://profiles.wordpress.org/users/MikeChallis/\"><strong>Mike Challis</strong></a></p>\n\nFeatures:\n\n<ul>\n<li>All new improved 4.xx version code base.</li>\n<li>New user interface with tabs.</li>\n<li>New \'Fields\' tab where you can re-order the display sequence of all the fields via a drag and drop interface.</li>\n<li>Forms are easy to add, remove, label, and edit and preview. Add as many as you need.</li>\n<li>Comes with standard fields of (Name, Email, Subject, Message). Any of the standard fields can be disabled.</li>\n<li>Fields are easy to add, remove, and re-order.</li>\n<li>Add extra fields of any type: text, textarea, checkbox, checkbox-multiple, radio, select, select-multiple, attachment, date, time, hidden, password, fieldset(box). <a href=\"http://www.fastsecurecontactform.com/how-to-add-extra-fields\">See FAQ</a></li>\n<li>File attachments are supported, see here for details: <a href=\"http://wordpress.org/support/topic/416371\" rel=\"nofollow\">http://wordpress.org/support/topic/416371</a></li>\n<li>Backup/restore tool. You can backup/restore all your forms or single forms and settings.<a href=\"http://www.fastsecurecontactform.com/backup-restore-forms\">See FAQ</a></li>\n<li>Easy to hide subject and message fields for use as a newsletter signup.</li>\n<li>Send mail to single or multiple contacts.</li>\n<li>Optional - redirect to any URL after message sent.</li>\n<li>Optional - posted data can be sent as a query string on the redirect URL. <a href=\"http://www.fastsecurecontactform.com/sending-data-by-query-string\">See faq</a></li>\n<li>Optional - confirmation email message.<a href=\"http://www.fastsecurecontactform.com/tip-add-email-autoresponder\">See FAQ</a></li>\n<li>Valid coding for HTML, XHTML, HTML STRICT, Section 508, and WAI Accessibility.</li>\n<li>Reloads form data and warns user if user forgets to fill out a field.</li>\n<li>CAPTCHA can be turned off or hidden from logged in users and or admins.</li>\n<li>Auto form fill for logged in users.</li>\n<li>Customizable form field labels.</li>\n<li>Customizable CSS style.</li>\n<li>New PHP Sessions are no longer enabled by default allowing for best compatibility with servers, caching, themes, and other plugins. This should resolve any PHP sessions related issues some users had.</li>\n<li>New added filter hooks for 3rd party plugins and custom modifications.</li>\n<li>New improved validation of time fields.</li>\n<li>New improved CAPTCHA images.</li>\n<li>New improved select options setting.</li>\n<li>New more optimized HTML indents when view source, added ID tags to form elements.</li>\n<li>New setting on the Advanced tab to enable a \"view / print message\" button after message sent. This feature will be skipped if the \"redirect after the message sends\" is also enabled.</li>\n<li>New Default CSS style for \'labels on top\' is now responsive(note:your theme style has to be responsive also).</li>\n<li>New improved Styles tab with internal or external CSS Style feature, you choose what you want.</li>\n<li>New easier to use field labels, tags, and field options. You no longer have to escape comas in form labels and options.</li>\n<li>New feature: for select, radio, checbox-miltiple, select-multiple field types: If you add options as a key==value set (use == to separate) the value will show on the form and the key will show in the email.</li>\n<li>New field Setting: \"Hide label\" check this setting if you want to hide the field label on the form.</li>\n<li>New field setting: \"Default as placeholder\" Check this setting if you want the default text to be a placeholder inside the form field. The placeholder is a short hint that is displayed in the input field before the user enters a value. Works with the following input types only: name, email, subject, message, text, textarea, url, and password.</li>\n<li>New tags capability for fields.</li>\n<li>New \'Reset Form\' button to Tools tab.</li>\n<li>New \'Delete Form\' function to Tools tab.</li>\n<li>New \'Reset Styles on all forms\' button to the Tools tab.</li>\n<li>New setting to skip names of non-required and unfilled-out fields in emails.</li>\n<li>Sends Email with UTF-8 character encoding for US and International character support.</li>\n<li>Pre-fill in form fields from a URL query string. <a href=\"http://www.fastsecurecontactform.com/query-string-parameters\">See FAQ</a></li>\n<li>Save emails to the WordPress database, or export to CSV or Excel. <a href=\"http://www.fastsecurecontactform.com/save-to-database\">See FAQ</a></li>\n<li>I18n language translation support. <a href=\"http://www.fastsecurecontactform.com/how-to-translate\">See FAQ</a></li>\n</ul>\n\nOnline Scheduling, Appointment Booking and Free Invoicing via vCita:\n\n<ul>\n<li>Add an online scheduling button to your form, or at the bottom of every page </li>\n<li>Display your up-to-date availability on your website, based on your existing calendar (Google, Outlook, etc)</li>\n<li>Invite leads and clients to schedule a phone call, book an appointment or request a service</li>\n<li>Automated confirmations and reminders will be sent to your clients, including meeting details (time, location or phone number)</li>\n<li>Scheduled appointments will be added to your calendar </li>\n<li>Built-in phone conference service, and easy integration with Skype, Google Hangout, and other online meetings. </li>\n<li>Collect payments online before the appointment or invoice and bill your clients for your time and services</li>\n<li>Learn more about vCita <a href=\"http://www.vcita.com/software/online_scheduling\">Online Scheduling Software</a></li>\n</ul>\n\nSecurity:\n\n<ul>\n<li>Akismet spam protection support.</li>\n<li>Spam checks: prevents spammer forcing to:, cc:, bcc:, newlines, and other email injection attempts to spam the world.</li>\n<li>Makes sure the contact form was posted from your blog domain name only.</li>\n<li>Secure input validation.</li>\n<li>Email message footer shows blog username(if logged on), Date/Time timestamp, IP address, and user agent (browser version) of user who contacted you.</li>\n</ul>\n\nCAPTCHA Image Support:\n\n<ul>\n<li>Uses Open-source free PHP CAPTCHA library by <a href=\"http://www.phpcaptcha.org\" rel=\"nofollow\">http://www.phpcaptcha.org</a> (customized version included)</li>\n<li>Abstract backgrounds with multi colored, angled, distorted, text</li>\n<li>Arched lines through text</li>\n<li>Refresh button to reload CAPTCHA</li>\n<li>CAPTCHA can be disabled on the \'Security\' tab.</li>\n</ul>\n\nRequirements/Restrictions:\n\n<ul>\n<li>Works with Wordpress 3.4.2+ and WPMU (Wordpress 4+ is highly recommended)</li>\n<li>PHP5</li>\n</ul>\";s:12:\"installation\";s:3985:\"<ol>\n<li><p>Install automatically through the <code>Plugins</code>, <code>Add New</code> menu in WordPress, or upload the <code>si-contact-form</code> folder to the <code>/wp-content/plugins/</code> directory.</p></li>\n<li><p>Activate the plugin through the <code>Plugins</code> menu in WordPress. On the Admin screen use the Plugins side menu to select FS Contact Form to configure the forms.</p></li>\n<li><p>You must add this shortcode <code>[si-contact-form form=\'1\']</code> in a Page, Post, or Text Widget. You can find this shortcode on the Basic Settings tab of any form. Here is how to add the shortcode: Log into your blog admin dashboard. Click <code>Pages</code>, click <code>Add New</code>, add a title to your page, enter the shortcode <code>[si-contact-form form=\'1\']</code> in the page. Uncheck <code>Allow Comments</code>, then click <code>Publish</code>.</p></li>\n<li><p>Test an email from your form.</p></li>\n<li><p>Updates are automatic. Click on \"Upgrade Automatically\" if prompted from the admin menu. If you ever have to manually upgrade, simply deactivate, uninstall, and repeat the installation steps with the new version.</p></li>\n</ol>\n\n<h4>For best mail delivery results, be sure to properly configure the email settings on the Basic Settings tab:</h4>\n\n<p>Read the following instructions and watch the YouTube video below:</p>\n\n<p>Set the \"Return-path address\" setting to a real email address on the SAME domain as your web site. This step really is ALWAYS necessary so mail is properly identified as originating from your server. For best results the \"Email To\" and the \"Return-path address\" should ALWAYS be separate REAL email addresses on the SAME DOMAIN as your web site (don\'t skip this important step!).</p>\n\n<p>Some people will like to set the \"Email To\" to a gmail.com, outlook.com, or some other webmail address (if that is what you want, go ahead and try it), but the \"Return-path address\" should ALWAYS be set to a real email addresses on the SAME DOMAIN as your web site. If you try a webmail address and your mail is not sending, try changing the \"Email to\" address to a REAL email addresses on the SAME DOMAIN as your web site. You can still deliver it to your webmail address by forwarding the email from a setting in your hosting control panel, or <a href=\"https://support.google.com/mail/answer/21289?hl=en\">configuring your webmail to fetch a mail account</a>.</p>\n\n<p>Next step, check this setting box:\nEnable when web host requires \"Mail From\" strictly tied to site (don\'t skip this important step!).</p>\n\n<p>Click \"Save Changes\", then test your form\'s mail delivery by sending a message from the form on your page. When testing your form on your page, do not fill out the email field with the same email address as the \"Email To\" or \"Return-path address\". Use a different email address because some server\'s security settings do not allow email to send from/to the same address.</p>\n\n<p>If you have other forms in use, be sure to repeat these settings for each form.</p>\n\n<p>Now your email is properly configured for best delivery. Your form Email should now be DMARC compliant for users who submit your form with yahoo, aol, comcast, or any other provider who now requires DMARC compliance.</p>\n\n<p>The email you receive will appear to be from your site email address, but because the email header \"Reply-to\" is set as the form user\'s email address. You should be able to just hit reply and send email back to the real sender. Also you should see the sender\'s email address in the message content. So it is still possible to send mail to that address if the \"Reply-to\" is somehow ignored by your email program.</p>\n\n<p><div class=\'video\'></div></p>\n\n<h4>I just installed this and do not get any email from it, what could be wrong?</h4>\n\n<p>Follow the instructions above, but if you still need help...</p>\n\n<p><a href=\"http://www.fastsecurecontactform.com/email-does-not-send\">See the FAQ page: How to troubleshoot mail delivery</a></p>\";s:11:\"screenshots\";s:1761:\"<ol>\n <li>\n <a href=\'//s.w.org/plugins/si-contact-form/screenshot-1.gif?r=1216045\' title=\'Click to view full-size screenshot 1\'><img class=\'screenshot\' src=\'//s.w.org/plugins/si-contact-form/screenshot-1.gif?r=1216045\' alt=\'si-contact-form screenshot 1\' /></a>\n <p><p>screenshot-1.gif is the contact form.</p></p>\n </li>\n <li>\n <a href=\'//s.w.org/plugins/si-contact-form/screenshot-2.gif?r=1216045\' title=\'Click to view full-size screenshot 2\'><img class=\'screenshot\' src=\'//s.w.org/plugins/si-contact-form/screenshot-2.gif?r=1216045\' alt=\'si-contact-form screenshot 2\' /></a>\n <p><p>screenshot-2.gif is the contact form showing the inline error messages.</p></p>\n </li>\n <li>\n <a href=\'//s.w.org/plugins/si-contact-form/screenshot-3.gif?r=1216045\' title=\'Click to view full-size screenshot 3\'><img class=\'screenshot\' src=\'//s.w.org/plugins/si-contact-form/screenshot-3.gif?r=1216045\' alt=\'si-contact-form screenshot 3\' /></a>\n <p><p>screenshot-3.gif is the <code>Contact Form options</code> tab on the <code>Admin Plugins</code> page.</p></p>\n </li>\n <li>\n <a href=\'//s.w.org/plugins/si-contact-form/screenshot-4.gif?r=1216045\' title=\'Click to view full-size screenshot 4\'><img class=\'screenshot\' src=\'//s.w.org/plugins/si-contact-form/screenshot-4.gif?r=1216045\' alt=\'si-contact-form screenshot 4\' /></a>\n <p><p>screenshot-4.gif adding the shortcode <code>[si-contact-form form=\'1\']</code> in a Page.</p></p>\n </li>\n <li>\n <a href=\'//s.w.org/plugins/si-contact-form/screenshot-5.png?r=1216045\' title=\'Click to view full-size screenshot 5\'><img class=\'screenshot\' src=\'//s.w.org/plugins/si-contact-form/screenshot-5.png?r=1216045\' alt=\'si-contact-form screenshot 5\' /></a>\n <p><p>screenshot-5.png Schedule an appointment feature.</p></p>\n </li>\n</ol>\";s:9:\"changelog\";s:29100:\"<h4>4.0.37</h4>\n\n<ul>\n<li>(25 May 2015) - fixed bug: redirect url encoding.</li>\n<li>fixed bug: the auto form fill feature will now automatically make the name and email form fields readonly when the feature is enabled to auto fill the logged on user\'s name and email. Non-logged in users can still edit those fields to enter their own name and email. Note: administrator is ignored, has to fill in the fields those always. </li>\n<li>fixed bug: placeholder was not working on password field type.</li>\n<li>added filter to modify autoresponder subject. This is useful for adding a ticket number.</li>\n</ul>\n\n<h4>4.0.36</h4>\n\n<ul>\n<li>(02 May 2015) - Fixed possible xss vulnerability with add_query_arg(), remove_query_arg() and esc_url() usage.</li>\n<li>Improved timezone compliance with WP standards.</li>\n</ul>\n\n<h4>4.0.34</h4>\n\n<ul>\n<li>(03 Apr 2015) - added a new filter hook to allow modifying the $user_info array. The user info is displayed at the end of the email</li>\n<li>changed the default CSS for Radio and Checkbox field inputs to comply with <a href=\"https://www.google.com/webmasters/tools/mobile-friendly/\">google webmaster tools mobile friendly test</a>. The tap targets were too close for radio and checkbox fields on mobile devices.\nCSS changes made in an update will only change the defaults for new forms you add, not any existing ones. This is to respect any settings you might have made yourself on the forms you have now.</li>\n</ul>\n\n<p>Please adjust these settings manually on any existing forms with radio or checkbox fields:\nEdit each of your forms on the form edit page, click on the Styles tab\nChange these two settings, like so:\nInput checkbox fields: width:22px; height:32px;\nInput radio fields: width:22px; height:32px;</p>\n\n<p>Click the Save Changes button, repeat for your other forms.\nThe defaults settings were: width:13px;</p>\n\n<h4>4.0.33</h4>\n\n<ul>\n<li>(17 Feb 2015) - fixed fscf_init_languages priority</li>\n<li>fixed a print array was left active during silent send</li>\n<li>updated turkish language file</li>\n</ul>\n\n<h4>4.0.32</h4>\n\n<ul>\n<li>(22 Dec 2014) - Move the filter hook si_contact_email_fields_posted to before Silent Remote Sending.</li>\n<li>add new advanced tab setting \"Enable Internationalized Domain Names when checking for a valid email address\". Because this setting relaxes the email validation check considerably, do not enable unless you have to allow Russian, Japanese, Chinese, etc. characters in the email address.</li>\n<li>Fix so field tags can have upper case characters.</li>\n</ul>\n\n<h4>4.0.30</h4>\n\n<ul>\n<li>(23 Sep 2014) - Translated Spanish 100% (es_ES) - Translated by <a href=\"http://www.mbrsolution.com/\">Manuel</a></li>\n</ul>\n\n<h4>4.0.29</h4>\n\n<ul>\n<li>(18 Sep 2014) - Fix the validate email function is updated for new generic top-level domains (gTLDs) released in 2014 and beyond. Allows up to 12 characters like .training, .photography, .company, etc. </li>\n<li>Fix so honeypot field slug will never conflict with custom post types.</li>\n<li>Add new feature for Default field properties: For the Default setting of a date field type, you can enter any date in the configured format. Or to show today\'s date as default, just put the word today in brackets. example: [today].</li>\n</ul>\n\n<h4>4.0.28</h4>\n\n<ul>\n<li>(13 Sep 2014) - Fix error \'Invalid argument supplied for foreach\' when add new form.</li>\n<li>Increase z-index for the calendar pop up.</li>\n<li>Updated Turkish language file.</li>\n</ul>\n\n<h4>4.0.27</h4>\n\n<ul>\n<li>(09 Sep 2014) - Fix \'After form additional HTML\' was not printing on form.</li>\n<li>Fix to check for conflicting post types and show a warning. None of the field slugs can be the same as a post type rewrite_slug or you will get \"page not found\" when posting the form with that field filled in. In this new version, if you have this conflict there will be a warning on the form and on the form edit page. Warning: one of your field tags conflicts with the post type redirect tag \"tag name\". To automatically correct this, click the \"Save Changes\" button on the form edit page. Also the form editor will not let a conflict happen while editing, but a conflict can still happen if you add custom post types. So if you add any custom post types, be sure to check your forms for any warning messages.</li>\n</ul>\n\n<h4>4.0.26</h4>\n\n<ul>\n<li>(24 Aug 2014) - Added a new setting on the Advanced tab \"Enable to prevent double click on submit button.\" It is enabled by default.\nThis setting disables the Submit button after click, to prevent double click on the button. Also prevents going back and submitting the form again. Note: this setting is ignored if the \"Are you sure?\" popup for the submit button is enabled, or when you have filled in the Submit button input attributes setting with a \"onclick\" attribute.</li>\n<li>Fixed tags were sometimes showing in confirmation email.</li>\n<li>Fixed Success page additional HTML shows outside of fieldset box.</li>\n<li>Updated fscf-placeholders.min.js to version 3.0.2.</li>\n<li>Updated Turkish language file</li>\n</ul>\n\n<h4>4.0.25</h4>\n\n<ul>\n<li>(11 Aug 2014) - Fix \'Add New Field\' button not working on German translation. last fix was not working.</li>\n</ul>\n\n<h4>4.0.24</h4>\n\n<ul>\n<li>(10 Aug 2014) - Fix \'Add New Field\' button not working on German translation.</li>\n<li>Added Silent Conditional Field and value settings for the silent send feature on the Advanced tab. Use this optional setting to conditionally disable silent sending unless this field tag and value are selected and submitted. Example usage: Your form has a checkbox to \"signup for our newsletter\" with the tag \"signup-newsletter\". You do a silent send to MailChimp to sign up people to the newsletter but you want to disable the silent send if the checkbox is left unchecked. For this example you will set the Silent Conditional Field to \"signup-newsletter\" and the Silent Conditional Value to \"selected\", this will only match the field tag and value when the checkbox is selected on the form.</li>\n</ul>\n\n<h4>4.0.23</h4>\n\n<ul>\n<li>(05 Aug 2014) - Added \"Success page additional HTML\" setting to the Advanced tab. This is printed on the success page after the message sent text. Useful for tracking a conversion with Google Analytics. Put the Google Code for Conversion Page here. HTML is allowed.</li>\n<li>Fixed email DNS check setting was ignored.</li>\n</ul>\n\n<h4>4.0.22</h4>\n\n<ul>\n<li>(29 Jul 2014) - Fixed support links</li>\n</ul>\n\n<h4>4.0.21</h4>\n\n<ul>\n<li>(21 Jun 2014) - Fixed broken \"Disable email sending\" for data export.</li>\n<li>Better explanation of email settings. </li>\n</ul>\n\n<h4>4.0.20</h4>\n\n<ul>\n<li>(11 Jun 2014) - akismet 3.xx compatible.</li>\n<li>Bug fix: ampersand and quotes were showing as entity in the To: name in the email.</li>\n<li>Better explanation of an email setting. </li>\n</ul>\n\n<h4>4.0.19</h4>\n\n<ul>\n<li>(15 May 2014) - Removed themefuse ad (their site was flagged by Google as possibly infected).</li>\n<li>Bug Fix: the \'follow\' feature was not working correctly if fields were re-sorted.</li>\n<li>New feature: When Name field is set to \"First Name, Last Name\" you can use the check box \"inline\" to get the last name to follow the first name on the same line.</li>\n<li>tested for WP 3.9.1</li>\n</ul>\n\n<h4>4.0.18</h4>\n\n<ul>\n<li>(07 Dec 2013) - Bug fix: query into hidden field type was not working.</li>\n<li>Bug fix: Standard field labels did not translate in email message.</li>\n<li>Bug fix: Standard field labels changed on the Labels tab did not change in email message.</li>\n<li>Bug fix: fixed HTML validation errors for datepicker css and for textarea.</li>\n<li>Update German, French, and Turkish Languages.</li>\n</ul>\n\n<h4>4.0.17</h4>\n\n<ul>\n<li>(17 Nov 2013) - Bug fix: calendar js conflict when two forms are on same page with date fields.</li>\n<li>Bug fix: \"Notice: Undefined index: subject\" error if subject field is disabled.</li>\n<li>added filter hook for modifying redirect URL.</li>\n</ul>\n\n<h4>4.0.16</h4>\n\n<ul>\n<li>(25 Oct 2013) - Bug fix: some fields would not validate if value was zero.</li>\n<li>Bug fix: tags for time field types were not working in the confirmation email or subject.</li>\n<li>Bug fix: admin css improvements to avoid conflicting plugins.</li>\n<li>Added ip_address as an available data send / export field.</li>\n<li>Added setting to the Advanced tab to enable and HTML anchor tag on the form POST URL.</li>\n<li>updated German (de_DE) translation. </li>\n</ul>\n\n<h4>4.0.15</h4>\n\n<ul>\n<li>(12 Oct 2013) - allow HTML in \"Your message has been sent, thank you.\" custom label.</li>\n<li>Bug fix: the attrubutes setting was not working on name, email, subject, fields.</li>\n<li>Bug fix: schedule a meeting button could show when not activated.</li>\n</ul>\n\n<h4>4.0.14</h4>\n\n<ul>\n<li>(11 Oct 2013) - Bug fix: view /print button did not work with some plugins.</li>\n<li>Bug fix: schedule a meeting button user preference default problem.</li>\n<li>updated German (de_DE) translation. </li>\n</ul>\n\n<h4>4.0.13</h4>\n\n<ul>\n<li>(08 Oct 2013) - Bux fix: some forms would fail to import when label had some Non-US-ASCII or Chinese characters.</li>\n<li>Bug fix: Form save error when tag had some Non-US-ASCII or Chinese characters. </li>\n<li>Bug fix: button on the Tools tab \"Import forms from 3.xx version\" did not always work correctly.</li>\n</ul>\n\n<h4>4.0.11 & 4.0.12</h4>\n\n<ul>\n<li>(06 Oct 2013) - Improved placeholder text to work on older browsers.</li>\n<li>Added new style setting for \"Placeholder text\" so you can change placeholder text color if you want.</li>\n<li>Note: if you are using the External CSS setting you should import the new placeholder css, click \"View custom CSS\" on the Styles tab to see it.</li>\n<li>added new setting to Advanced tab \"Enable to have the email labels on same line as values\".</li>\n<li>updated German (de_DE) translation.</li>\n<li>Bug fix: copy styles was not copying all of the style settings.</li>\n<li>Bug fix: button on the Tools tab \"Import forms from 3.xx version\" did not work correctly.</li>\n</ul>\n\n<h4>4.0.10</h4>\n\n<ul>\n<li>(03 Oct 2013) - Bug fix: Activation generates \"unexpected output\" notice to admin.</li>\n<li>Bug fix: Could not select \"Block spam messages\" for Akismet.</li>\n<li>Bug fix: Field Regex was always validating as if required.</li>\n<li>Bug fix: Atachment file types, and file size labels were not working properly.</li>\n<li>Bug fix: Field default text was not showing in form.</li>\n</ul>\n\n<h4>4.0.9</h4>\n\n<ul>\n<li>(02 Oct 2013) - Bug fix: PHP method of calling form display was not working.</li>\n<li>Bug fix: time validation did not work on 24 hour format.</li>\n</ul>\n\n<h4>4.0.7 & 4.0.8</h4>\n\n<ul>\n<li>(01 Oct 2013) - Added a button on the Tools tab \"Import forms from 3.xx version\" for those who might be troubled by an import failure.</li>\n<li>Bug Fix: fixed a couple problems with importing settings from 3.xx version.</li>\n<li>Bug fix: none of the language translations were working.</li>\n<li>Bug fix: there were some ui image 404 errors from includes/images</li>\n<li>Bug fix: vCita setting error.</li>\n<li>other minor bug fixes.</li>\n</ul>\n\n<h4>4.0.6</h4>\n\n<ul>\n<li>(29 Sep 2013) - Version 4.0.6 is fiinally released after one year of programming by Mike Challis and Ken Carlson and 6 weeks of beta testing.</li>\n<li>Most notable changes:</li>\n<li>All new code base with better use of class structure.</li>\n<li>New user interface with tabs.</li>\n<li>New \'Fields\' tab where you can re-order the display sequence of all the fields via a drag and drop interface.</li>\n<li>The standard fields (name,email,subject,message) can now be manipulated and re-ordered along with the extra fields in the new \'Fields\' tab.</li>\n<li>Forms are easier to add, remove, label, and select for edit or preview.</li>\n<li>Fields are easier to add, remove, and re-order.</li>\n<li>Easier to use field labels, tags, and field options. You no longer have to escape comas in form labels and options.</li>\n<li>Automatic import of settings from version 2.5.6 and all 3.xx versions.</li>\n<li>You can restore your backed up forms from version 2.8 and newer with \'Restore Settings\' on the new \'Tools\' tab.</li>\n<li>Updated Online Meeting Scheduler by vCita on the new \'Scheduler\' tab.</li>\n<li>Updated \'Constant Contact\' plugin integration for the new \'Newsletter\' settings tab.</li>\n<li>PHP Sessions are no longer enabled by default allowing for best compatibility with servers, caching, themes, and other plugins. This should resolve any PHP sessions related issues some users had.</li>\n<li>Added filter hooks for 3rd party plugins and custom modifications.</li>\n<li>Improved validation of time fields.</li>\n<li>Improved CAPTCHA images.</li>\n<li>More optimized HTML indents when view source.</li>\n<li>New setting on the Advanced tab to enable a \"view / print message\" button after message sent. This feature will be skipped if the \"redirect after the message sends\" is also enabled.</li>\n<li>Default CSS style for \'labels on top\' is now responsive(note:your theme style has to be responsive also).</li>\n<li>New feature: for select, radio, checbox-miltiple, select-multiple field types: If you add options as a key==value set (use == to separate) the value will show on the form and the key will show in the email.</li>\n<li>New field Setting: \"Hide label\" check this setting if you want to hide the field label on the form.</li>\n<li>New field setting: \"Default as placeholder\" Check this setting if you want the default text to be a placeholder inside the form field. The placeholder is a short hint that is displayed in the input field before the user enters a value. Works with the following input types only: name, email, subject, message, text, textarea, url, and password.</li>\n<li>New tags capability for fields.</li>\n<li>New \'Reset Form\' button to Tools tab.</li>\n<li>New \'Delete Form\' function to Tools tab.</li>\n<li>New \'Reset Styles on all forms\' button to the Tools tab.</li>\n<li>Lots of work on the Style tab:</li>\n<li>Added more style settings for Style of labels, field inputs, buttons, and text.</li>\n<li>Separated style sections into \"Alignment DIVs\", and \"Style of labels, field inputs, buttons, and text\".\n\"Alignment DIVs\" settings are for adjusting the alignments of the form elements.\nYou can also check \"reset the alignment\" to return to defaults and make the \"labels on top\" or \"labels on left\".\n\"Style of labels, field inputs, buttons, and text\" are for setting style of the form labels, field inputs, buttons, and text.\nThis is a great way to change label or field colors. You can add color:red; any style attributes you want.\nYou can also check \"reset the styles\" to return to defaults.</li>\n<li>New setting on the Style tab: \"Select the method of delivering the form style\":\n\"Internal Style Sheet CSS (default)\"\n\"External Style Sheet CSS (requires editing theme style.css)\"\nBy default, the FSCF form styles are editable below when using \"Internal Style Sheet CSS\". The style is included inline in the form HTML.\nCSS experts will like the flexibility of using their own custom style sheet by enabling \"External Style Sheet CSS\", then the FSCF CSS will NOT be included inline in the form HTML, and the custom CSS below must be included in the style.css of the theme. Be sure to remember this if you switch your theme later on.\nPremium themes can now add support for Fast Secure Contact Form style in the theme\'s CSS. Select \"External Style Sheet CSS\" when instructed by the theme\'s installation instructions.</li>\n<li>New \"Reset Styles on all forms\" button to the Tools menu, and you should click it once after upgrading from version 3.xx to acquire the many changes/improvements to the default styles.</li>\n<li>Editorial change: E-mail is now Email, and e-mail is now email.</li>\n<li>Includes all the recent improvements from the 3.xx versions.</li>\n<li>Hundreds of bug fixes and code improvements.</li>\n</ul>\n\n<h4>4.0.5 Beta 5</h4>\n\n<ul>\n<li>(27 Sep 2013) - added ability to use \"Default as placeholder\" setting with \"Enable double email entry\" setting enabled. The \"Default\" setting should be in this example format: \"Email==Re-enter Email\". Separate words with == separators.</li>\n<li>added ability to use \"Default as placeholder\" setting with \"First Name, Last Name\" setting enabled. The \"Default\" setting should be in this example format: \"First Name==Last Name\". Separate words with == separators.</li>\n<li>When using \"Default as placeholder\" setting with \"First Name, Middle Name, Last Name\" setting enabled. The \"Default\" setting should be in this example format: \"First Name==Middle Name==Last Name\". Separate words with == separators.</li>\n<li>added a warning message if placeholder is enabled with empty Default text.</li>\n<li>added a warning message if double email setting is enabled with Default text in wrong format.</li>\n<li>added a warning message if \"First Name, Last Name\" is enabled with Default text in wrong format.</li>\n<li>Bug Fix: left a diagnostic print statement in the code in the placeholder feature.</li>\n<li>added new feature for select, radio, checbox-miltiple, select-multiple field types: If you add options as a key==value set (use == to separate) the value will show on the form and the key will show in the email.</li>\n<li>added two new settings to fields:\n\"Hide label\" check this setting if you want to hide the field label on the form.\n\"Default as placeholder\" Check this setting if you want the default text to be a placeholder inside the form field. The placeholder is a short hint that is displayed in the input field before the user enters a value. Works with the following input types only: name, email, subject, message, text, textarea, url, and password.</li>\n<li>added a \"Reset Styles on all forms\" button to the Tools menu, and I suggest clicking it each time you replace the plugin files to test the beta because I have been making many changes/improvements to the default styles.</li>\n<li>added new css element \"Field Pre-Follow DIV\" (fscf-div-field-prefollow) to properly set fields just to before the follow fields to the proper with while allowing wider labels for other fields.</li>\n<li>changed the CSS for the \"Field Left DIV\" (fscf-div-field-left) on \'labels on top\' setting to fix labels not wide enough problem.</li>\n<li>Fix bug: option value of \'0\' was deleted.</li>\n<li>got rid of the additional sentence \"Enter your email again.\" and the fields are now \"Email\", and \"Re-Enter Email\", just like Facebook signup has it.</li>\n<li>On Fields tab changed \'Name\' setting to \'Label\' as it perfectly relates to the actual form element.</li>\n<li>renamed the \'Border Style\' setting to \'Fieldset Box\' as it perfectly relates to the actual form element.</li>\n<li>also the external CSS element \'fscf-border\' was renamed to \'fscf-fieldset\'</li>\n<li>added width:99%; max-width:250px; to the Field Follow DIV (labels on top) so follow fields are matching width</li>\n<li>added a separate style for fieldset field, so now there is \"Form Fieldset Box\" (fscf-fieldset) for the form fieldset and \"Field Fieldset Box\" (fscf-fieldset-field) for fieldset field types.</li>\n</ul>\n\n<h4>4.0.4 Beta 4</h4>\n\n<ul>\n<li>(24 Sep 2013) - added a setting on the Advanced tab to enable a \"view / print message\" button after message sent. This feature will be skipped if the \"redirect after the message sends\" is also enabled.</li>\n<li>added vCita Online Appointment scheduler.</li>\n<li>added a couple more style settings for vCita.</li>\n<li>integrated vcita with external style CSS feature.</li>\n<li>added mode Save Changes buttons on settings pages.</li>\n<li>Optimized default styles some more. To aquire all the new style changes, you have to click the checkboxes to reset the styles on the Style settings tab.</li>\n<li>Default CSS for \'labels on top\' is now responsive(note:your theme has to be also).</li>\n<li>Removed settings for text field size, textarea cols and rows, because this is now controlled by CSS instead.</li>\n<li>Adjusted CAPTCHA fonts larger.</li>\n<li>All time field selects default to blank, then you select them.</li>\n<li>Improved the time validation: if a time field is not required and you select hour but not day, it will fail validation with message: \"The time selections are incomplete, select all or none.\"</li>\n<li>the * prefix is really not necessary for single selections in the email, so I removed it,</li>\n<li>you should only have a \' * \' separating fields with multiple selected options from now on.</li>\n<li>Fix bug: time fields now obey required, not required.</li>\n<li>added new setting to Advanced tab: \"Enable to skip names of non-required and unfilled-out fields in emails.\"</li>\n<li>Fix bug: required field checkbox was stuck on required on every field when double email field was enabled.</li>\n<li>added more ID tags to form HTML.</li>\n</ul>\n\n<h4>4.0.3 Beta 3</h4>\n\n<ul>\n<li>(16 Sep 2013) - added more ID tags to form HTML.</li>\n<li>More work on the Style tab:</li>\n<li>added new setting to \"Select the method of delivering the form style\":</li>\n<li>\"Internal Style Sheet CSS (default)\"</li>\n<li>\"External Style Sheet CSS (requires editing theme style.css)\"</li>\n<li>By default, the FSCF form styles are editable below when using \"Internal Style Sheet CSS\". The style is included inline in the form HTML.</li>\n<li>CSS experts will like the flexibility of using their own custom style sheet by enabling \"External Style Sheet CSS\", then the FSCF CSS will NOT be included inline in the form HTML, and the custom CSS below must be included in the style.css of the theme. Be sure to remember this if you switch your theme later on.</li>\n<li>Premium themes may have added support for Fast Secure Contact Form style in the theme\'s style.css. Select \"External Style Sheet CSS\" when instructed by the theme\'s installation instructions.</li>\n<li>Note: if you use the setting \"reset the alignment styles to labels on left(or top)\", or \"Reset the styles of labels, field inputs, buttons, and text\", then the custom CSS below will reflect the changes. You would have to edit your custom CSS again to see the changes on the form.</li>\n<li>\"Required field\" will also be set when double email is enabled in the Email Address field settings.</li>\n<li>added Save Changes button to field details on the Fields tab</li>\n<li>added (standard field) note next to standard field names on the Fields tab.</li>\n<li>added note \"Standard field names can be changed on the Labels tab.\" to the field details on the Fields tab</li>\n<li>added standard field note will indicate if a (standard field name was changed on the Labels tab).</li>\n<li>added a couple more filters.</li>\n<li>If you have changed a standard field label, it will display the changed label in bold on the Fields tab.</li>\n<li>Optimized code for email from name when name field is disabled</li>\n<li>Fix big: date validation failed if date field was emptied, even if date not required.</li>\n<li>Added \"After form message\" setting to the \"Advanced\' tab, you can use this to add any HTML after the form.</li>\n<li>Adjusted CAPTCHA difficulty down slightly.</li>\n<li>Fix big: now uses correct Return-path address setting for the confirmation email</li>\n<li>Fix bug: confirmation email might send to admin if email field is disabled</li>\n<li>updated <a href=\"http://www.fastsecurecontactform.com/how-to-add-extra-fields\" rel=\"nofollow\">http://www.fastsecurecontactform.com/how-to-add-extra-fields</a></li>\n<li>Editorial changes to field instructions.</li>\n<li>Fix bug: the tools tab lost focus when submitting a tool option.</li>\n</ul>\n\n<h4>4.0.2 Beta 2</h4>\n\n<ul>\n<li>(30 Aug 2013) - Lots of work on the Style tab:</li>\n<li>Added more style settings for Style of labels, field inputs, buttons, and text.</li>\n<li>Separated style sections into \"Alignment DIVs\", and \"Style of labels, field inputs, buttons, and text\".</li>\n<li>\"Alignment DIVs\" settings are for adjusting the alignments of the form elements.</li>\n<li>You can also check \"reset the alignment\" to return to defaults and make the \"labels on top\" or \"labels on left\".</li>\n<li>\"Style of labels, field inputs, buttons, and text\" are for setting style of the form labels, field inputs, buttons, and text.</li>\n<li>This is a great way to change label or field colors. You can add color:red; any style attributes you want.</li>\n<li>You can also check \"reset the styles\" to return to defaults.</li>\n<li>Fix bug: The donate box div did not minify.</li>\n<li>Fix bug: The Label CSS and Field CSS field options did not work on all field types.</li>\n<li>Fix bug: max_forms_num could get out of sync when deleting forms.</li>\n<li>Fix bug: setting was ignored \"Enable sender information in email footer\"</li>\n<li>Fix bug: Custom Label CSS was ignored for checkbox, checkbox-multiple, and radio fields.</li>\n<li>Fix bug: CSS setting \'labels on left\' messed up checkbox, checkbox-multiple, and radio fields.</li>\n<li>Fix bug: CSS setting \'labels on left\' messed up HTML before/after form field position.</li>\n<li>Fix bug: Field Label setting for the Reset button adds onclick= to the label.</li>\n<li>Fix bug: When viewing a form preview, changing the form select switches back to Edit mode.</li>\n<li>Fix Bug: Reply-To email header was set to incorrect address.</li>\n<li>\"Email From\" setting renamed to the more accurate \"Return-path address\".</li>\n<li>Fixed and added more error label settings.</li>\n<li>Moved \"Enable PHP sessions\" setting to the \'Advanced\' tab.</li>\n<li>Split \'Styles/Labels\' tab into a \'Styles\' tab and a \'Labels\' tab.</li>\n<li>Optimize backup file download then test with IE, FF, Chrome, Opera.</li>\n<li>Added form_number to the \'fsctf_mail_sent\' action hook object array</li>\n<li>Added \'Domain Protect Settings\' to the \'Security\' settings tab</li>\n<li>Added setting for \"Additional allowed domain names(optional)\" to the \'Security\' settings tab.</li>\n<li>Added show/hide details labels to field settings toggle buttons.</li>\n<li>Added focus to new field with message when adding New Field.</li>\n<li>Added setting: CSS style for form checkbox, checkbox-multiple, and radio labels. (useful to change colors).</li>\n<li>Updated admin and form stylesheets.</li>\n<li>Edited some settings labels.</li>\n<li>More optimized HTML indents when view source.</li>\n<li>Minor UI changes.</li>\n</ul>\n\n<h4>4.0.1 Beta 1</h4>\n\n<ul>\n<li>(15 Aug 2013) - After one year of hard work, Mike Chalis and Ken Carlson have redeveloped the whole plugin.</li>\n<li>All new codebase with better use of class structure.</li>\n<li>New user interface with tabs.</li>\n<li>New \'Fields\' tab where you can re-order the display sequence of all the fields via a drag and drop interface.</li>\n<li>The standard fields (name,email,subject,message) can now be manipulated and re-ordered along with the extra fields in the new \'Fields\' tab.</li>\n<li>Forms are easier to add, remove, label, and select for edit or preview.</li>\n<li>Fields are easier to add, remove, and re-order.</li>\n<li>Easier to use field labels, tags, and field options. You no longer have to escape comas in form labels and options.</li>\n<li>A \'Reset Form\' and \'Delete Form\' button has been added to the new \'Tools\' tab.</li>\n<li>Automatic import of settings from older version 2.5.6 and newer.</li>\n<li>You can restore your backed up forms from version 2.8 and newer with \'Restore Settings\' on the new \'Tools\' tab.</li>\n<li>Updated Meeting Scheduler - by vCita is still being developed for the new \'Meeting\' settings tab.</li>\n<li>Updated \'Constant Contact\' plugin integration for the new \'Newsletter\' settings tab.</li>\n<li>PHP Sessions are no longer enabled by default allowing for best compatibility with servers, caching, themes, and other plugins. This should resolve many sessions related issues some users had.</li>\n<li>Added filter hooks for 3rd party plugins.</li>\n<li>Removed HTML before/after field divs.</li>\n<li>Relocated some email settings from \'Basic Settings\' to \'Advanced\' tab.</li>\n<li>Editorial change: E-mail is now Email, e-mail is email</li>\n<li>Includes all the recent improvements from the 3.xx versions.</li>\n<li>Many bug fixes and code improvements.</li>\n</ul>\n\n<h4>3.1.9</h4>\n\n<ul>\n<li>(15 Aug 2013) - Added announcement of Fast Secure Contact Form Version 4.0 Beta was released August, 15 2013. Please help test it!</li>\n<li><a href=\"http://www.fastsecurecontactform.com/beta\">Download and test the 4.0 Beta</a></li>\n</ul>\n\n<h4>3.1.8.6</h4>\n\n<ul>\n<li>(13 Aug 2013) - fixed label style for checkbox, checkbox-multiple, and radio field types.</li>\n<li>removed divs for HTML before/after field settings.</li>\n<li>minor bug fixes.</li>\n</ul>\n\n<h4>3.1.8.5</h4>\n\n<ul>\n<li>(18 Jul 2013) - added new settings: \"Submit button input attributes\" and \"Form action attributes\". These can be used for Google Analytics tracking code.</li>\n<li>added captcha font randomization.</li>\n<li>fixed date does not have to be required.</li>\n<li>fixed date error message translation.</li>\n</ul>\n\n<h4>3.1.8.4</h4>\n\n<ul>\n<li>(07 Jul 2013) - Fixed CAPTCHA PHP warning on some servers.</li>\n<li>Added better date input validation.</li>\n</ul>\n\n<p><a href=\"http://www.fastsecurecontactform.com/changelog-archive\">Fast Secure Contact Form - WordPress changelog archive</a></p>\";s:3:\"faq\";s:7009:\"<p><a href=\"http://www.fastsecurecontactform.com/faq-wordpress-version\">See the official FAQ at FastSecureContactForm.com</a></p>\n\n<h4>I just installed this and do not get any email from it, what could be wrong?</h4>\n\n<p><a href=\"http://www.fastsecurecontactform.com/email-does-not-send\">See FAQ page: How to troubleshoot email delivery</a></p>\n\n<h4>If I upgrade from version 3.xx, will my forms and settings be lost?</h4>\n\n<p>No, it will automatic import of settings from versions 2.5.6 up to 3.xx. As long as you do not use the delete button when deactivating the plugin.\nYou can and should <a href=\"http://www.fastsecurecontactform.com/backup-restore-forms\">make a backup of your forms</a>.</p>\n\n<h4>I upgraded from version 3.xx, to 4.xx and my forms and settings did not import</h4>\n\n<p>The forms should have imported. In some rare cases, they don\'t import. Sorry for any inconvenience. \nUpdate to the latest version, click the button on the Tools tab \"Import forms from 3.xx version\".</p>\n\n<p>More help is on this help page:\n<a href=\"http://www.fastsecurecontactform.com/forms-did-not-import\">I upgraded to 4.xx version and my forms did not import</a></p>\n\n<h4>What happens during upgrade from 3.xx, where are the settings stored?</h4>\n\n<p>The upgrade is run automatically only once after installing or upgrading the 4.xx version over a 3.xx versions.\nThe 4.xx version uses different wp options settings than 3.xx\nThe options settings are rows in the wp_options database table.</p>\n\n<p>4.xx wp_options:\nfs_contact_global,\nfs_contact_form1,\nfs_contact_form2,\nfs_contact_form3,</p>\n\n<p>3.xx wp_options:\nsi_contact_gb,\nsi_contact_form,\nsi_contact_form2,\nsi_contact_form3,\nsi_contact_form4,</p>\n\n<p>During 4.xx install, the installation looks to see if 4.xx options are not present(first time install), and if 3.xx options are present(3.xx was installed previously), if it passes both those tests, then it runs the import code in\nclass-fscf-import.php</p>\n\n<h4>How do I backup or restore my forms?</h4>\n\n<p>On the Tools settings tab is a backup / restore tool.\nThe backup / restore feature can be used for backups or as a site to site transfer. You can back up ALL forms and transfer ALL forms to the same or new site using the restore feature. Or you can back up individual forms and restore them to the the same or new site replacing any one form selected during the restore. Please consider that restoring one form or ALL forms makes permanent replacements to the forms already on the site you restore them to.\nRead <a href=\"http://www.fastsecurecontactform.com/backup-restore-forms\">more about backups</a></p>\n\n<h4>Is this plugin available in other languages?</h4>\n\n<p>Yes. To use a translated version, you need to obtain or make the language file for it.\nAt this point it would be useful to read <a href=\"http://codex.wordpress.org/Installing_WordPress_in_Your_Language\" title=\"Installing WordPress in Your Language\">Installing WordPress in Your Language</a> from the Codex. You will need an .mo file for this plugin that corresponds with the \"WPLANG\" setting in your wp-config.php file. Translations are listed below -- if a translation for your language is available, all you need to do is place it in the <code>/wp-content/plugins/si-contact-form/languages</code> directory of your WordPress installation. If one is not available, and you also speak good English, please consider doing a translation yourself (see the next question).</p>\n\n<p>The following translations are included in the download zip file:</p>\n\n<ul>\n<li>Albanian (sq_AL) - Translated by <a href=\"http://www.romeolab.com\">Romeo Shuka</a></li>\n<li>Arabic (ar) partial translation - Translated by Jasmine Hassan</li>\n<li>Bulgarian (bg_BG) - Translated by <a href=\"http://chereshka.net\">Dimitar Atanasov</a></li>\n<li>Chinese (zh_CN) - Translated by <a href=\"http://www.awuit.cn/\">Awu</a> </li>\n<li>Danish (da_DK) - Translated by <a href=\"http://wordpress.blogos.dk/wpdadkdownloads/\">GeorgWP</a></li>\n<li>Farsi(Persian)(fa_IR) partial translation - Translated by Ramin Firooz</li>\n<li>Finnish (fi) - Translated by <a href=\"http://www.guimikko.com/\">Mikko Vahatalo</a> </li>\n<li>French (fr_FR) - Translated by <a href=\"http://pierre.sudarovich.free.fr/\">Pierre Sudarovich</a></li>\n<li>German (de_DE) - Translated by <a href=\"http://sebastian.kreideweiss.info/\">Sebastian Kreideweiss</a></li>\n<li>Greek (el) - Translated by <a href=\"http://www.jbaron.gr/\">Ioannis</a></li>\n<li>Hebrew, Israel (he_IL) - Translated by Asaf Chertkoff FreeAllWeb GUILD</li>\n<li>Hungarian (hu_HU) - Translated by <a href=\"http://dmgmedia.hu\">Jozsef Burgyan</a></li>\n<li>Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n<li>Japanese (ja) - Translated by [Ichiro Kozuka]</li>\n<li>Norwegian Bokmal (nb_NO) - Translated by <a href=\"http://punktlig-ikt.no\">Tore Johnny Bratveit</a></li>\n<li>Polish (pl_PL) - Translated by [Pawel Mezyk]</li>\n<li>Portuguese (pt_PT) - Translated by <a href=\"http://pws.op351.net/\">AJBFerreira Blog</a></li>\n<li>Portuguese Brazil (pt_BR) - Translated by [Rui Alao]</li>\n<li>Romanian (ro_RO) - Translated by <a href=\"http://www.jibo.ro\">Anunturi Jibo</a></li>\n<li>Russian (ru_RU) - Translated by <a href=\"http://www.iflexion.com/\">Iflexion</a></li>\n<li>Spanish (es_ES) - Translated by <a href=\"http://www.mbrsolution.com/\">Manuel</a></li>\n<li>Swedish (sv_SE) - Translated by <a href=\"http://walktheline.boplatsen.se/\">Daniel Persson</a></li>\n<li>Traditional Chinese, Taiwan (zh_TW) - Translated by [Cjh]</li>\n<li>Turkish (tr_TR) - Translated by <a href=\"http://www.tapcalap.com/\">Tolga</a></li>\n<li>Ukrainian (uk_UA) - Translated by <a href=\"http://wordpress.ua/\">Wordpress.Ua</a></li>\n<li>More are needed... Please help translate.</li>\n</ul>\n\n<h4>Can I provide a translation?</h4>\n\n<p>Yes! \nHow to translate Fast Secure Contact Form for WordPress\n<a href=\"http://www.fastsecurecontactform.com/how-to-translate\" rel=\"nofollow\">http://www.fastsecurecontactform.com/how-to-translate</a></p>\n\n<h4>Is it possible to update the translation files for newest version?</h4>\n\n<p>How to update a translation of Fast Secure Contact Form for WordPress\n<a href=\"http://www.fastsecurecontactform.com/how-to-update-translation\" rel=\"nofollow\">http://www.fastsecurecontactform.com/how-to-update-translation</a></p>\n\n<p>For more help... <a href=\"http://www.fastsecurecontactform.com/faq-wordpress-version\">See the official FAQ at FastSecureContactForm.com</a></p>\n\n<h4>What is the \"Schedule an appointment\" button on my contact form?</h4>\n\n<p>You can extend your contact form to let your users to schedule appointments based on your availability.\nLearn more about <a href=\"http://www.vcita.com/software/online_scheduling\">Why should I add Online Scheduling to my website</a></p>\n\n<p>You can enable or disable this option in the \"Scheduling\" tab of your contact form plugin settings page.</p>\n\n<p>If you have additional questions visit <a href=\"http://support.vcita.com\">vCita Support Page</a></p>\";s:11:\"other_notes\";s:231:\"<h3>Credits</h3>\n<ul>\n<li><a href=\"http://www.642weather.com/weather/scripts.php\">Mike Challis</a> - Plugin Author / Lead programmer</li>\n<li><a href=\"http://kencarlsonconsulting.com/\">Ken Carlson</a> - Plugin programmer</li>\n</ul>\";}s:13:\"download_link\";s:58:\"https://downloads.wordpress.org/plugin/si-contact-form.zip\";s:4:\"tags\";a:10:{s:7:\"akismet\";s:7:\"Akismet\";s:7:\"captcha\";s:7:\"captcha\";s:7:\"contact\";s:7:\"contact\";s:12:\"contact-form\";s:12:\"contact form\";s:5:\"email\";s:5:\"email\";s:4:\"form\";s:4:\"form\";s:4:\"mail\";s:4:\"mail\";s:12:\"multilingual\";s:12:\"multilingual\";s:4:\"spam\";s:4:\"spam\";s:4:\"wpmu\";s:4:\"wpmu\";}s:11:\"donate_link\";s:44:\"https://www.FastSecureContactForm.com/donate\";}','no'),(1321,'_site_transient_timeout_fscf_kws_ad4','1439174608','yes'),(1322,'_site_transient_fscf_kws_ad4','<style>\n #kws_message { max-width: 98%; width:820px; font-size: 1.05em; font-family: sans-serif; }\n #kws_message .button-secondary { margin-left: .5em; }\n #kws_message h3 { display: block; margin: 1em 0 0 0; clear: both; }\n #kws_message .cc_logo { padding-top: .75em; }\n</style>\n<div id=\"kws_message\" class=\"updated inline\">\n <a href=\"http://katz.si/fscfdesign3?cc=design3-h3-p3-b4\" class=\"alignright cc_logo\"><img alt=\"Constant Contact\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARkAAAApCAMAAAA2w608AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAwBQTFRFtsbaGEV8JlOM+89tUXanma7KJk98mq3FiKLDqLnOi6G5GUaA7Lhp+slcUXSgRGaN/ee2/NqOUnOZboyxhqDC/eCh/NR8fZax+9F12+LsGENyUnSd+Mtxt8TWJlOR8LhYQ2qe66AhNF6VQ2eR+spg7Lx3i6LAiqLEHURyg57AvcvdYICpNVyNi6PC8qod9a4b8agd/vTe7KMf5psjb4qpJlGFk6rI+LEa/u7M/eKp/eq+NF+Y/NyV+8xn97Aa/d+dboy0tsXYxdDc6Z4hqLjK5Jkk99us7bVZ/vDTbouuNF2R+cVT1Nzm1d7qUXWk+9Bx1Nzkt8TUYH+ljqG5t8TSYH6eK1B8+sZVNVuFYIGvdZK4YH6g/evD+ujHqLrRpbnRYIGsma7I4ZUlmqzC/evGcIyui6K++LUocYupJlCAnrPN/eStHEV1+Nec6qxN+taN+9aDssPY9sBVfZe5Q2iWGUeE/vLZ/e3JKFKF/ei6/N2bNVuJxtDdx9Db9M+QnK3BjqG3Q2mZF0iIF0eHF0eGF0eFGEN1F0aDF0aBGER5F0V/GEN2GER6F0eEGER4qLrT093pF0V+i6PExdHibo22xdHhF0eIF0aCF0aAUnGVGER3GEV7fZi9ma/MxdHg76YeQ2qggJu/9KwcG0V4GkZ+iqTEUnKWF0Z/09zoqLrSG0V6fZi8fZm9xdDexdHf55wii6K9G0Z709znfZi7GkZ8eZW7/d2Y/NeFe5i8+shZ+sdY7aMf8KcefZe3xdDf+9iMi6G8+bw2qLnQtsXaws/ggZatxNHh/u/Q/NWAqLvT6bBc+stj/NR+8MqS+OXIxtLitMTZw9Dh9+C6VnOU1Nvk8a0rwc7fsMHWb4mnUXWmGEiH+9ub9+TJ/O7Vr8HW/vXgj6fG/N6b4OfvuMTSjKPAxtHe+cBEOVuDOFyJcIyw78B2/ezF9tGPfZWv7agu8c+gVnKT5aJA5qdP561cmq/L+uvW+uzW/NiKUnWj/OOs67Jb+MJUF0iJF0iK///gFBQU3oCw6gAAAQB0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AFP3ByUAAAqDSURBVHja7JoJdJTVFcc/w4QYtAFZGiRkGpOQImSKVALKQCUQRGAMBQwQERo2CwguLIqioiQggjLTWdrGZmKkhCakoRRbCrUsiooL3fe92t2W7gu25B/fvfd73zKZnIRU23PSvHMc37zv3ve/7/fuu28yg9Ha06wGaovWPvjGv175K4weHjaUHw5dd9WTz1wx5eqpS4f1kDGxBLb86YVrR+15nyaD1h4yCkv2ynlrhs/Dh20yw3rItKJ4xab9n1wzfPhDJz5gk0Hr/z0Z/OKSvZ8jMiplbDJv9JBpxUaTzNwT42wy/2hLBv+L4N6526Zjo3OaDJ61yUwjR8N9b4U6Nd/be1dG3hFNBD2e8o6mRWybSWblteM0mfdM+4aTDBD3eFuo1dXgv8YlWO4XzejbrYlIeZ2nxtPBtMjVZO4/c+K+5ctpjy5/XfbJMGOMttjtQtF0esddhkDYa2t60KkM67QMwmiJlicHbk2Dxh8oMoUr0u5XQGJG4+qBVz716c/f/CGbDIKOGFtaDFzYgYh3asdBKQLHpvqdmmF07B8Kh9EpGRUPwqEWTzBZYMCZe8xh+HMnLQb6TRjcz6ivr7/4YiEjT4mMK2FaWvwXBKZGLbCuMxser1Nzwy4DLs2WjsFEvZ3iFzRlUBcN1bUtNMCb889YORPCLffNyn/XF+djrE1moEVGg/EEVS2MBMvjF0SGPDuTM3CdGQ3GH1eaISPa4Qzi0HE2w2/urSo0nrYgcfeso/Ohk2v8a+8e3GuiIvPPy+ttMndpMjAkxggfY/OegDT7AtFD9ogMsrNmCceDBCeEnBUMIT6+3mB7mq2Jmqghh1BbIed7vQHlaOfWxj0T848OkomfN3DZF0wy4w0HGdNLkfGeVy3HOQ1dVKrVRFjBCIfDERmKhmSVNfzYUPOHKRIN1eBxT41acEQ5BcWpnK9l3vOgXqeHNL0hl2YwSsZBWaByD6tZaEhxV24ePnMmQlvI4apSRHlI0WqnVmPWxPxXabrXf3Lk5oZ+Fhk+TCaZ92oyCHOQrhitukPwOaawrtEqn1GuH0fswh1yXTUedirXTkFHUQlyppHm+ZhTNK69/YqXLFBoUBnzWO5eJAipcGusMm5F1pK0JGCCIvMm0LD6yqeODMRhTeZOPkwmma9ZZDhlgo5LI+S4qFRtBb31OiKrs/qyQCEb8rtuGjKyDUOW4XlYKeOsLc5LQKUS4i1O0XCN5V7uFqqBM9yILRNKditdc2bWxNcQihOBIyNOW2T6jXCQuVGTMbaq5ryO4HXfpnBfIkbY6kajViDRUMK973YKWoY5TIY0t7YDhgqonQayP/YWBN1CcScYvy3jT54yZyYAMYWAyOA2i8xPR7xsxGIvvvj157/z3dXa02j6qGpNjpSpk3Qwz5RXElsdjYjBMYRpy7xUOuIh/1bd4lZFZS+ptyrZI4ZfnCxDOkyNpJnj0IzrXYibJ06OjzcYEWQh7e61S3eNVDgBEzUikXiwworHlyxlbrlu9Ff+QiWFyIzFoMOXTRh07w13w920uVFaqVqx43OGVRvh52IQl6Sg800dfvHo4u+jNcaAHF3FpSezsBO7h3GKDFPNCuojTUfwcqIZWlj8zptRQHrA98mfCrElxD1w2npjelkxMvMlL8A4jUunDgvVC5mvjj4N/Pj6B6fdvvTSpOXaSKmsqqqya6Hg4LIDPt3xqEYhUcua4+YdU0FrhIDgDIZYN+kBNAoZhmHKoFRJVqXamnGbdky6VoWGTARvVWVlKeSx1xLKgbuUI9W9z24ya/8w5eq//43I/OyuG7H8jnVXPfn+Kz4zdekfk5PZRs0OMmSXHfg4L3PolYNs4p6H09XP0SBHLTFXpQwNNZJNjHpN8FgDPIkhMPSnkVLSrLVFc8SmVZcgzyl+tUqSByD3p+GYlwONckh2Kcckh0wimHVfembK7aivH6sqxZaHbhg3ao9J5kfJyTxOrcENvckkQ30eyOUg+eChoVIaGYGWWAHYNmzeyFssW2tmVa4yzLHIkOZz9nrIRD43IEb9Up/Mot/7UExCi9sIpebQa4OD8ePbtqUkPUr49x5F5vpTL4eQ1nf48BdO2GSSkzRSPqaalX/wEXR5K/vsk92i9ymSIKfo/3wcUEtL9GGxbVNB3Qbe4goeyK2qqkwByHCAJpNBmustzRhZl4omTzXJyjCJZzF8sn/FCULs6cgRlilFEi4ly0cRGeDAis/St74P/Moi8+d2yGTsUG2AFaUj0TkhtqWS2GJo2Qr6aDWJn6j1LqEl1sJHbxmn+KBYiNmx1pLhEk2mgDRnWJq15PO0Wbg4OVKUk6TGAEEykvwhQqkOIXqxSeAQmRW0/aMg8OsHZo7a8+3fI5Z7yV4mg3EWmVfaIXPsU9QO6aAHPKIak0EBdUeu1wMoph7LovYRGR1AS4TtJL0MceUBtlwvLA5okWLWtECxzUghwxM3WAN4mLrADOX+MBzzcm+GmNtk0kmmTQFG+pq+qqwMVVdWxUYh883f2WS+3A6ZQx+hVhigm079x0ugRMch6u2ozfi4akKKegfk3s2QlWbsVA0CSC0UxeyTgZGW0xLqPYc5bKi/8kURaRY1m5qslCIgOIMPkJPsAfUyAHLPMKNTD3DAFNphEee/3ArI7njCnY20/WtKZs1kgyqTzNwTHZNB1kXcpmcH0Jx9MI3m3pkOHC+SaGgNG1g6i7qYU0yfGwoFSRF5NktAhUAa++wsQCEtnJ2mk9MhEUlDwLy2D4pmVnozaQZ4tulqWgZYhFvJibYex6l3DM1krQQK5DnSRegYNvCAChfp0xUwljmoZTSZTfvnoR9H06jJ/Hz+szOH3rF20aJF7X5RqP7WXvWYo6UXcsyFG/h/RQh8QrXpPG2h6hWqGIuysphIFiA+c7IvcrWDIKcsdtpAXaC/WK7SSZPn1Bxzq4iZe5SOOezE2029dDSLYVogUSjd8U6RMWUec32rOnLv/rnmx68ok/nNyi1tP/ImIxNY9YTdNmc/ardVAWTvVu0kR0m9/iedD7GQxnbnYbMezKOXk5MTnIAxbKh6Otw8h+YTgTyHqEqAPGXKEJFJXpPB0+x+NBP93ULK1HZUZE6KzGbnn2S1Gzf90vp2syrlt+md/KmCvtND/+12W5bee5fZ1IrQh8YmU2JPpl6fhfqhAmOObd+u4MpgHui1DzvNtpwylWXvXdRbaBfLTIfmQuTpaRdkK2MaY4gSGbT1gkQhShPtuYv0RKa/k8y5c3KU+FN9Q+d/wJFvyANn+w6hVn12tnLNpDcLxjCPPtXV1WUc5E2qV/1BZO4jw33LpBJPZlPlNKb3kCF9S4B9qs0uIVN+/i3q3aQWEChThr1LHB89sKyaNft+T42ihKbtXVbCdZKc2BRlqneW41hAprCFykiInpSU8SwSrsj0ccgEfaN7XYcL/ZXD8auK89w5j2DiV5ytaPOlpOt7yYQDnDhnm5/hkmm2JuklGLZ54n7j+gv71fmju/JrVnf/XRu35R/N79LPfEZ3B9Mr/+iEHjJJyLzUK//Orv0y3L3JYPxLg+/t4k/m3ZzM4UFd/mcW3ZoMRl/T9X9j0c1z5j/4xydvCTAA95hdN8HdFIAAAAAASUVORK5CYII=\" width=\"250\" height=\"36\" /></a>\n <h2>Follow up with your valuable contacts.</h2>\n <h3>Reach customers where they go most: their inbox.</h3>\n <p class=\"description\">When your form gets submitted, add the contact to a Constant Contact email newsletter.</p>\n <p>With <a href=\"http://katz.si/fscfdesign3?cc=design3-h3-p3-b4\">Constant Contact</a>, use attractive, professional-looking email communications to stay in regular touch with your customers and build strong customer relationships.</p> <p><a href=\"http://katz.si/fscfdesign3?cc=design3-h3-p3-b4\" class=\"button button-primary\">1. Get Constant Contact</a> <a href=\"plugin-install.php?tab=plugin-information&plugin=contact-form-newsletter&section=description&TB_iframe=true&width=640&height=701\" class=\"thickbox button button-secondary\" title=\"Integrate Newsletters with Fast Secure Contact Form\">2. Install the Newsletter Plugin</a></p>\n <img height=\"1\" width=\"1\" border=\"0\" style=\"display: none;\" src=\"http://tracking.katzseo.com/tracking202/static/gpx.php?amount=\" onload=\"(function(e){if(jQuery(\'.fscf_statbox\').length === 0) { jQuery(\'#kws_message\').insertBefore(jQuery(\'#si_contact_mike_challis_tip\')); } else { }})(jQuery);\" />\n</div>','yes'),(932,'widget_bbp_search_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(933,'widget_bbp_forums_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(934,'widget_bbp_login_widget','a:3:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:0:\"\";s:8:\"register\";s:0:\"\";s:8:\"lostpass\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(935,'widget_bbp_replies_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(936,'widget_bbp_topics_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(937,'widget_bbp_stats_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(938,'widget_bbp_views_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(939,'widget_a2a_follow_widget','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:16:{s:5:\"title\";s:0:\"\";s:11:\"facebook_id\";s:15:\"876720959038087\";s:10:\"twitter_id\";s:10:\"3064611849\";s:12:\"instagram_id\";s:0:\"\";s:12:\"pinterest_id\";s:0:\"\";s:10:\"behance_id\";s:0:\"\";s:9:\"flickr_id\";s:0:\"\";s:13:\"foursquare_id\";s:0:\"\";s:14:\"google_plus_id\";s:0:\"\";s:11:\"linkedin_id\";s:134:\"https://www.linkedin.com/profile/view?id=ABwAAAZ-W_kBP4Y78RjrHbFN2aA3p2neQW7Bhok&firstName=Reese&lastName=Wood&trk=mp-allpost-aut-name\";s:19:\"linkedin_company_id\";s:0:\"\";s:9:\"tumblr_id\";s:0:\"\";s:8:\"vimeo_id\";s:0:\"\";s:10:\"youtube_id\";s:23:\" --5kiupTN5WJRoRlk9W2Ew\";s:18:\"youtube_channel_id\";s:24:\"UC--5kiupTN5WJRoRlk9W2Ew\";s:7:\"feed_id\";s:34:\"http://thebeloitpod.libsyn.com/rss\";}}','yes'),(940,'widget_a2a_share_save_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(954,'widget_black-studio-tinymce','a:2:{i:2;a:4:{s:5:\"title\";s:15:\"Links/Sponsors \";s:4:\"text\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:6:\"filter\";s:1:\"1\";}s:12:\"_multiwidget\";i:1;}','yes'),(328,'wpmembers_settings','a:16:{s:7:\"version\";s:5:\"3.0.2\";s:6:\"notify\";s:1:\"1\";s:7:\"mod_reg\";s:1:\"1\";s:7:\"captcha\";s:1:\"0\";s:7:\"use_exp\";i:0;s:9:\"use_trial\";i:0;s:8:\"warnings\";i:0;s:10:\"user_pages\";a:3:{s:7:\"profile\";s:53:\"http://thebeloitpod.com/wordpress1/index.php/members/\";s:8:\"register\";s:61:\"http://thebeloitpod.com/wordpress1/index.php/subscribedonate/\";s:5:\"login\";s:53:\"http://thebeloitpod.com/wordpress1/index.php/members/\";}s:6:\"cssurl\";s:91:\"http://thebeloitpod.com/wordpress1/wp-content/plugins/wp-members/css/wp-members-kubrick.css\";s:5:\"style\";s:97:\"http://thebeloitpod.com/wordpress1/wp-content/plugins/wp-members/css/wp-members-2014-no-float.css\";s:6:\"autoex\";a:2:{s:7:\"auto_ex\";i:0;s:11:\"auto_ex_len\";s:0:\"\";}s:6:\"attrib\";s:1:\"1\";s:5:\"block\";a:6:{s:4:\"post\";s:1:\"0\";s:4:\"page\";s:1:\"1\";s:5:\"forum\";i:0;s:5:\"topic\";i:0;s:5:\"reply\";i:0;s:7:\"channel\";i:0;}s:12:\"show_excerpt\";a:6:{s:4:\"post\";i:0;s:4:\"page\";i:0;s:5:\"forum\";i:0;s:5:\"topic\";i:0;s:5:\"reply\";i:0;s:7:\"channel\";i:0;}s:10:\"show_login\";a:6:{s:4:\"post\";s:1:\"1\";s:4:\"page\";s:1:\"1\";s:5:\"forum\";i:0;s:5:\"topic\";i:0;s:5:\"reply\";i:0;s:7:\"channel\";i:0;}s:8:\"show_reg\";a:6:{s:4:\"post\";s:1:\"1\";s:4:\"page\";s:1:\"1\";s:5:\"forum\";i:0;s:5:\"topic\";i:0;s:5:\"reply\";i:0;s:7:\"channel\";i:0;}}','yes'),(329,'wpmembers_fields','a:16:{i:0;a:7:{i:0;i:1;i:1;s:10:\"First Name\";i:2;s:10:\"first_name\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"y\";i:6;s:1:\"y\";}i:1;a:7:{i:0;i:2;i:1;s:9:\"Last Name\";i:2;s:9:\"last_name\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"y\";i:6;s:1:\"y\";}i:2;a:7:{i:0;i:3;i:1;s:9:\"Address 1\";i:2;s:5:\"addr1\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"y\";i:6;s:1:\"n\";}i:3;a:7:{i:0;i:4;i:1;s:9:\"Address 2\";i:2;s:5:\"addr2\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"n\";i:6;s:1:\"n\";}i:4;a:7:{i:0;i:5;i:1;s:4:\"City\";i:2;s:4:\"city\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"y\";i:6;s:1:\"n\";}i:5;a:7:{i:0;i:6;i:1;s:5:\"State\";i:2;s:8:\"thestate\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"y\";i:6;s:1:\"n\";}i:6;a:7:{i:0;i:7;i:1;s:3:\"Zip\";i:2;s:3:\"zip\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"y\";i:6;s:1:\"n\";}i:7;a:7:{i:0;i:8;i:1;s:7:\"Country\";i:2;s:7:\"country\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"y\";i:6;s:1:\"n\";}i:8;a:7:{i:0;i:9;i:1;s:9:\"Day Phone\";i:2;s:6:\"phone1\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"y\";i:6;s:1:\"n\";}i:9;a:7:{i:0;i:10;i:1;s:5:\"Email\";i:2;s:10:\"user_email\";i:3;s:4:\"text\";i:4;s:1:\"y\";i:5;s:1:\"y\";i:6;s:1:\"y\";}i:10;a:7:{i:0;i:11;i:1;s:13:\"Confirm Email\";i:2;s:13:\"confirm_email\";i:3;s:4:\"text\";i:4;s:1:\"n\";i:5;s:1:\"n\";i:6;s:1:\"n\";}i:11;a:7:{i:0;i:12;i:1;s:7:\"Website\";i:2;s:8:\"user_url\";i:3;s:4:\"text\";i:4;s:1:\"n\";i:5;s:1:\"n\";i:6;s:1:\"y\";}i:12;a:7:{i:0;i:13;i:1;s:17:\"Biographical Info\";i:2;s:11:\"description\";i:3;s:8:\"textarea\";i:4;s:1:\"n\";i:5;s:1:\"n\";i:6;s:1:\"y\";}i:13;a:7:{i:0;i:14;i:1;s:8:\"Password\";i:2;s:8:\"password\";i:3;s:8:\"password\";i:4;s:1:\"n\";i:5;s:1:\"y\";i:6;s:1:\"n\";}i:14;a:7:{i:0;i:15;i:1;s:16:\"Confirm Password\";i:2;s:16:\"confirm_password\";i:3;s:8:\"password\";i:4;s:1:\"n\";i:5;s:1:\"n\";i:6;s:1:\"n\";}i:15;a:9:{i:0;i:16;i:1;s:3:\"TOS\";i:2;s:3:\"tos\";i:3;s:8:\"checkbox\";i:4;s:1:\"n\";i:5;s:1:\"n\";i:6;s:1:\"n\";i:7;s:5:\"agree\";i:8;s:1:\"n\";}}','yes'),(330,'wpmembers_tos','Put your TOS (Terms of Service) text here. You can use HTML markup.','yes'),(331,'wpmembers_dialogs','a:9:{i:0;s:119:\"This content is restricted to site members. If you are an existing user, please log in. New users may register below.\";i:1;s:50:\"Sorry, that username is taken, please try another.\";i:2;s:74:\"Sorry, that email address already has an account.<br />Please try another.\";i:3;s:124:\"Congratulations! Your registration was successful.<br /><br />You may now log in using the password that was emailed to you.\";i:4;s:29:\"Your information was updated!\";i:5;s:53:\"Passwords did not match.<br /><br />Please try again.\";i:6;s:30:\"Password successfully changed!\";i:7;s:65:\"Either the username or email address do not exist in our records.\";i:8;s:135:\"Password successfully reset!<br /><br />An email containing a new password has been sent to the email address on file for your account.\";}','yes'),(332,'wpmembers_email_newreg','a:2:{s:4:\"subj\";s:45:\"Your registration info for The Beloit Podcast\";s:4:\"body\";s:276:\"Thank you for registering for The Beloit Podcast\r\n\r\nYour registration information is below.\r\nYou may wish to retain a copy for your records.\r\n\r\nusername: [username]\r\npassword: [password]\r\n\r\nYou may login here:\r\n[reglink]\r\n\r\nYou may change your password here:\r\n[members-area]\r\n\";}','no'),(333,'wpmembers_email_newmod','a:2:{s:4:\"subj\";s:40:\"Thank you for registering for [blogname]\";s:4:\"body\";s:173:\"Thank you for registering for [blogname]. \r\nYour registration has been received and is pending approval.\r\nYou will receive login instructions upon approval of your account\r\n\";}','no'),(334,'wpmembers_email_appmod','a:2:{s:4:\"subj\";s:50:\"Your registration for [blogname] has been approved\";s:4:\"body\";s:299:\"Your registration for [blogname] has been approved.\r\n\r\nYour registration information is below.\r\nYou may wish to retain a copy for your records.\r\n\r\nusername: [username]\r\npassword: [password]\r\n\r\nYou may login and change your password here:\r\n[members-area]\r\n\r\nYou originally registered at:\r\n[reglink]\r\n\";}','no'),(335,'wpmembers_email_repass','a:2:{s:4:\"subj\";s:42:\"Your password reset for The Beloit Podcast\";s:4:\"body\";s:165:\"Your password for The Beloit Podcast has been reset\r\n\r\nYour new password is included below. You may wish to retain a copy for your records.\r\n\r\npassword: [password]\r\n\";}','no'),(336,'wpmembers_email_notify','a:2:{s:4:\"subj\";s:36:\"New user registration for [blogname]\";s:4:\"body\";s:194:\"The following user registered for [blogname]:\r\n\r\nusername: [username]\r\nemail: [email]\r\n\r\n[fields]\r\nThis user registered here:\r\n[reglink]\r\n\r\nuser IP: [user-ip]\r\n\r\nactivate user: [activate-user]\r\n\";}','no'),(337,'wpmembers_email_footer','----------------------------------\r\nThis is an automated message from The Beloit Podcast\r\nPlease do not reply to this address','no'),(338,'wpmembers_style','http://thebeloitpod.com/wordpress1/wp-content/plugins/wp-members/css/generic-no-float.css','yes'),(3220,'_transient_timeout_feed_mod_5a25458da46a336967a55e430a3eace5','1439388516','no'),(3221,'_transient_feed_mod_5a25458da46a336967a55e430a3eace5','1439345316','no'),(3218,'_transient_timeout_feed_5a25458da46a336967a55e430a3eace5','1439388516','no'),(3219,'_transient_feed_5a25458da46a336967a55e430a3eace5','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:34:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"RocketGeek Interactive\";s: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:21:\"http://rocketgeek.com\";s: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:60:\"Home of WP-Members, The Original WordPress Membership 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Aug 2015 14:43: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://wordpress.org/?v=4.2.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:5:{i:0;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WP-Members version 3.0 released\";s: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:76:\"http://rocketgeek.com/release-announcements/wp-members-version-3-0-released/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://rocketgeek.com/release-announcements/wp-members-version-3-0-released/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Jun 2015 22:55: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Release Announcements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://rocketgeek.com/?p=8135\";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:291:\"I have been waiting a long time to finish and release WP-Members 3.0 and that day has finally come! This is a major update and will be but the beginning of a lot of updates and improvements in the plugin. Before I go into details for the update, please let me be clear – this […]\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://rocketgeek.com/release-announcements/wp-members-version-3-0-released/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"WP-Members 3.0 Early Testing\";s: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:41:\"http://rocketgeek.com/uncategorized/7882/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://rocketgeek.com/uncategorized/7882/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 May 2015 15:41: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://rocketgeek.com/?p=7882\";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:321:\"WP-Members 3.0 is nearing the testing stage. This update to the plugin is really exciting because I have been working on moving the plugin to be more Object Oriented. The current version of the plugin is very extensible. But I want to move that forward to be even more so. The new Object Oriented approach […]\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://rocketgeek.com/uncategorized/7882/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Do not modify plugin 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://rocketgeek.com/basics/do-not-modify-plugin-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://rocketgeek.com/basics/do-not-modify-plugin-files/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 May 2015 03:02:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:6:\"Basics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"actions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"basics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"filters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:5:\"hooks\";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:5:{s:4:\"data\";s:19:\"pluggable-functions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://rocketgeek.com/?p=7814\";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:324:\"This is an important best practice – never, ever modify plugin files directly. First, there is never a good reason to do this. Second, refer to my first point. Note that the WP-Members plugin is full of action and filter hooks that allow you to build proper customizations for your deployment. This is the […]\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://rocketgeek.com/basics/do-not-modify-plugin-files/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Add a file upload field to attach to admin notification email during registration\";s: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:120:\"http://rocketgeek.com/tips-and-tricks/add-a-file-upload-field-to-attach-to-admin-notification-email-during-registration/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"http://rocketgeek.com/tips-and-tricks/add-a-file-upload-field-to-attach-to-admin-notification-email-during-registration/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Apr 2015 01:55: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:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:15:\"Tips and Tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"filters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:18:\"wpmem_member_links\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"wpmem_notify_filter\";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:5:{s:4:\"data\";s:24:\"wpmem_post_register_data\";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:5:{s:4:\"data\";s:24:\"wpmem_register_form_rows\";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:5:{s:4:\"data\";s:7:\"wp_mail\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://rocketgeek.com/?p=7735\";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:338:\"This tutorial will describe how to add a file upload field to the registration form and have the resulting file be sent with the admin notification email. Prerequisites This process assumes that admin notification is turned on for the plugin, as the attachment (if any) will be added to that email. You’ll need to create […]\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"http://rocketgeek.com/tips-and-tricks/add-a-file-upload-field-to-attach-to-admin-notification-email-during-registration/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Creating an optgroup tag in a dropdown list\";s: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:79:\"http://rocketgeek.com/filter-hooks/creating-an-optgroup-tag-in-a-dropdown-list/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://rocketgeek.com/filter-hooks/creating-an-optgroup-tag-in-a-dropdown-list/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Apr 2015 03:57:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:7:\"Filters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:15:\"Tips and Tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"filters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"str_replace\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:4:\"tips\";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:5:{s:4:\"data\";s:24:\"wpmem_register_form_rows\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://rocketgeek.com/?p=7711\";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:330:\"Here is a slightly more advanced example of using the wpmem_register_form_rows filter to modify a form input element. In this case, we will take a regular dropdown select field and add the optgroup label tag to sections of it. Note: for best results in understanding this customization, it is best to create a test field […]\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://rocketgeek.com/filter-hooks/creating-an-optgroup-tag-in-a-dropdown-list/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}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:27:\"http://rocketgeek.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"type\";i:128;s:7:\"headers\";a:11:{s:4:\"date\";s:29:\"Wed, 12 Aug 2015 02:08:36 GMT\";s:6:\"server\";s:6:\"Apache\";s:10:\"x-pingback\";s:35:\"http://rocketgeek.com/wp/xmlrpc.php\";s:4:\"etag\";s:34:\"\"05455f9d8c6a9f81503668b82ddee871\"\";s:4:\"link\";s:33:\"<http://rkt.bz/35>; rel=shortlink\";s:13:\"last-modified\";s:29:\"Mon, 10 Aug 2015 14:43:18 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:16:\"content-encoding\";s:4:\"gzip\";s:14:\"content-length\";s:4:\"1972\";s:10:\"connection\";s:5:\"close\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";}s:5:\"build\";s:14:\"20150511173052\";}','no'),(343,'wpmembers_email_wpfrom','thebeloitpod@gmail.com','yes'),(344,'wpmembers_email_wpname','Reese Wood','yes'),(1670,'gourlpotcoinpublic_key','','yes'),(8141,'_site_transient_timeout_available_translations','1440264172','yes'),(8142,'_site_transient_available_translations','a:58:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 06:57:37\";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.2.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:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-27 06:36:25\";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.2.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:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-08 17:43:43\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-08 11:08:34\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-06-03 00:26:43\";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.2.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æt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-13 14:52:11\";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.2.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:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-22 11:37:31\";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.2.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_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-25 13:39:01\";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.2.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:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-04 19:47:01\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.0/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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-05 20:09:08\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-05-15 10:49:37\";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.2.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_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-10 14:16:27\";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.2.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:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-05 17:37:43\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.0/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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.1.7\";s:7:\"updated\";s:19:\"2015-03-26 15:20:27\";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.1.7/haz.zip\";s:3:\"iso\";a:1:{i:2;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.2.2\";s:7:\"updated\";s:19:\"2015-07-12 08:05:04\";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.2.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:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-07 17:26:35\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-05-26 06:43:50\";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.2.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:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";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.2.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:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:5:\"4.1.7\";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:64:\"https://downloads.wordpress.org/translation/core/4.1.7/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.2.2\";s:7:\"updated\";s:19:\"2015-07-07 10:32:20\";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.2.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:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-16 14:25:19\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-06-08 07:10:14\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-06-10 17:07:58\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-05-09 10:15:05\";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.2.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:5:\"4.1.7\";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:61:\"https://downloads.wordpress.org/translation/core/4.1.7/ps.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ps\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-22 10:25:51\";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.2.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:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-08 14:53:48\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-05-31 11:58:44\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-05-26 09:29:23\";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.2.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.1.7\";s:7:\"updated\";s:19:\"2015-03-26 16:25:46\";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.1.7/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.2.2\";s:7:\"updated\";s:19:\"2015-05-29 08:27:12\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-12 00:55:52\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-06 10:10:09\";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.2.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.2.2\";s:7:\"updated\";s:19:\"2015-07-22 10:57:52\";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.2.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:5:\"4.1.7\";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:64:\"https://downloads.wordpress.org/translation/core/4.1.7/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.2.2\";s:7:\"updated\";s:19:\"2015-07-05 10:51:50\";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.2.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:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-29 06:37:03\";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.2.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:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";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.2.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:\"继续\";}}}','yes'),(1616,'gourl-bbpresscheckout_page','359','yes'),(1668,'gourlreddcoinpublic_key','','yes'),(1669,'gourlreddcoinprivate_key','','yes'),(349,'WPLANG','','yes'),(29556,'_transient_timeout_feed_mod_2c2fe0099a2578688413800ea68677d6','1444284465','no'),(29557,'_transient_feed_mod_2c2fe0099a2578688413800ea68677d6','1444241265','no'),(29554,'_transient_timeout_feed_2c2fe0099a2578688413800ea68677d6','1444284465','no'),(29555,'_transient_feed_2c2fe0099a2578688413800ea68677d6','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"ButlerBlog\";s: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:25:\"http://www.butlerblog.com\";s: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:20:\"chad butler\'s weblog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jun 2015 16:00:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://wordpress.org/?v=4.3.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:10:{i:0;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"5 Articles to Help You Manage WordPress Better\";s: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:\"http://feedproxy.google.com/~r/butlerblog/~3/-HQU00er-qs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://www.butlerblog.com/2015/06/11/articles-to-help-you-manage-wordpress-better/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Jun 2015 15:59: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:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:13:\"Blogging Tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:6:\"design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:4:\"tips\";s: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:\"http://www.butlerblog.com/?p=3436\";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:1776:\"Here are some posts that I have done on the site to help you manage WordPress better. Maybe you’re a writer or designer, and not a developer. Then you are in luck! These posts are to help the...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=-HQU00er-qs:sLeSOeyZpBU:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=-HQU00er-qs:sLeSOeyZpBU:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=-HQU00er-qs:sLeSOeyZpBU:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=-HQU00er-qs:sLeSOeyZpBU:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=-HQU00er-qs:sLeSOeyZpBU:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=-HQU00er-qs:sLeSOeyZpBU:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=-HQU00er-qs:sLeSOeyZpBU:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=-HQU00er-qs:sLeSOeyZpBU:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=-HQU00er-qs:sLeSOeyZpBU:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=-HQU00er-qs:sLeSOeyZpBU:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/-HQU00er-qs\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://www.butlerblog.com/2015/06/11/articles-to-help-you-manage-wordpress-better/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://www.butlerblog.com/2015/06/11/articles-to-help-you-manage-wordpress-better/\";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:54:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Don’t Let This Mistake Kill Your Business\";s: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:\"http://feedproxy.google.com/~r/butlerblog/~3/AFPMDwe6Lv8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://www.butlerblog.com/2015/06/04/dont-let-this-mistake-kill-your-business/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Jun 2015 14:00:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:13:\"Blogging Tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Editorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"content-marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:4:\"fear\";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:5:{s:4:\"data\";s:9:\"freelance\";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:5:{s:4:\"data\";s:12:\"productivity\";s: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:\"http://www.butlerblog.com/?p=3370\";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:1770:\"It’s called “Perfectionism” and it effects many new writers, developers, and freelancers. At some point, it effects almost everyone who attempts to launch their business online...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=AFPMDwe6Lv8:pK0kUdPxMmA:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=AFPMDwe6Lv8:pK0kUdPxMmA:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=AFPMDwe6Lv8:pK0kUdPxMmA:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=AFPMDwe6Lv8:pK0kUdPxMmA:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=AFPMDwe6Lv8:pK0kUdPxMmA:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=AFPMDwe6Lv8:pK0kUdPxMmA:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=AFPMDwe6Lv8:pK0kUdPxMmA:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=AFPMDwe6Lv8:pK0kUdPxMmA:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=AFPMDwe6Lv8:pK0kUdPxMmA:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=AFPMDwe6Lv8:pK0kUdPxMmA:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/AFPMDwe6Lv8\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://www.butlerblog.com/2015/06/04/dont-let-this-mistake-kill-your-business/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://www.butlerblog.com/2015/06/04/dont-let-this-mistake-kill-your-business/\";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:42:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Is your site ready for mobilegeddon?\";s: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:\"http://feedproxy.google.com/~r/butlerblog/~3/mgXl7Q4PrM8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://www.butlerblog.com/2015/04/20/is-your-site-ready-for-mobilegeddon/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Apr 2015 03:34:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:13:\"Blogging Tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Editorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"Web\";s: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:\"http://www.butlerblog.com/?p=3393\";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:1771:\"Is your site currently mobile friendly? How fast does it load on mobile devices? Dubbed “Mobilegeddon,” Google will be making changes to its search algorithm on Tuesday to take into...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=mgXl7Q4PrM8:77HxzmE4DWw:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=mgXl7Q4PrM8:77HxzmE4DWw:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=mgXl7Q4PrM8:77HxzmE4DWw:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=mgXl7Q4PrM8:77HxzmE4DWw:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=mgXl7Q4PrM8:77HxzmE4DWw:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=mgXl7Q4PrM8:77HxzmE4DWw:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=mgXl7Q4PrM8:77HxzmE4DWw:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=mgXl7Q4PrM8:77HxzmE4DWw:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=mgXl7Q4PrM8:77HxzmE4DWw:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=mgXl7Q4PrM8:77HxzmE4DWw:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/mgXl7Q4PrM8\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://www.butlerblog.com/2015/04/20/is-your-site-ready-for-mobilegeddon/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://www.butlerblog.com/2015/04/20/is-your-site-ready-for-mobilegeddon/\";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:69:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Personal Brand Building with Your Own URL Shortener\";s: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:\"http://feedproxy.google.com/~r/butlerblog/~3/ISeEKBHBNSU/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://www.butlerblog.com/2015/02/05/personal-brand-building-your-own-url-shortener/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Feb 2015 14:00:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:12:{i:0;a:5:{s:4:\"data\";s:13:\"Blogging Tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"Brand Building\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"Brand Image\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"branding\";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:5:{s:4:\"data\";s:17:\"content-marketing\";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:5:{s:4:\"data\";s:17:\"Personal Branding\";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:5:{s:4:\"data\";s:14:\"Shortened Urls\";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:5:{s:4:\"data\";s:4:\"tips\";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:5:{s:4:\"data\";s:5:\"tools\";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:5:{s:4:\"data\";s:6:\"webdev\";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:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://www.butlerblog.com/?p=3297\";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:1775:\"You may have noticed that last year I started the process of reinforcing my personal brand image, placing a larger importance on personal branding. This included a web site makeover, a new logo for...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=ISeEKBHBNSU:dx5Efy0GcqQ:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=ISeEKBHBNSU:dx5Efy0GcqQ:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=ISeEKBHBNSU:dx5Efy0GcqQ:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=ISeEKBHBNSU:dx5Efy0GcqQ:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=ISeEKBHBNSU:dx5Efy0GcqQ:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=ISeEKBHBNSU:dx5Efy0GcqQ:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=ISeEKBHBNSU:dx5Efy0GcqQ:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=ISeEKBHBNSU:dx5Efy0GcqQ:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=ISeEKBHBNSU:dx5Efy0GcqQ:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=ISeEKBHBNSU:dx5Efy0GcqQ:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/ISeEKBHBNSU\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://www.butlerblog.com/2015/02/05/personal-brand-building-your-own-url-shortener/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://www.butlerblog.com/2015/02/05/personal-brand-building-your-own-url-shortener/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Schedule Your Day to Improve Productivity in 3 Easy Steps\";s: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:\"http://feedproxy.google.com/~r/butlerblog/~3/M8lGPovanBo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://www.butlerblog.com/2015/02/03/schedule-your-day-to-improve-productivity-in-3-easy-steps/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Feb 2015 13:00:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:13:\"Blogging Tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"content-marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"freelance\";s: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:\"http://www.butlerblog.com/?p=3239\";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:1775:\"I once wrote a post about the importance of avoiding distractions as a freelancer. It began with a little story about burning a pot of coffee and related that to how distractions can yield a similar...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=M8lGPovanBo:aXSUkrdH0YQ:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=M8lGPovanBo:aXSUkrdH0YQ:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=M8lGPovanBo:aXSUkrdH0YQ:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=M8lGPovanBo:aXSUkrdH0YQ:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=M8lGPovanBo:aXSUkrdH0YQ:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=M8lGPovanBo:aXSUkrdH0YQ:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=M8lGPovanBo:aXSUkrdH0YQ:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=M8lGPovanBo:aXSUkrdH0YQ:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=M8lGPovanBo:aXSUkrdH0YQ:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=M8lGPovanBo:aXSUkrdH0YQ:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/M8lGPovanBo\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"http://www.butlerblog.com/2015/02/03/schedule-your-day-to-improve-productivity-in-3-easy-steps/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"http://www.butlerblog.com/2015/02/03/schedule-your-day-to-improve-productivity-in-3-easy-steps/\";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:45:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"5 Top Bloggers Teach You How to Drive Traffic to 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://feedproxy.google.com/~r/butlerblog/~3/LKX4GwZQzyE/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"http://www.butlerblog.com/2015/02/02/5-top-bloggers-teach-you-how-to-drive-traffic-to-your-blog/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Feb 2015 18:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:13:\"Blogging Tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"content-marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"tips\";s: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:\"http://www.butlerblog.com/?p=3131\";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:1772:\"These 5 top bloggers command top dollar for their advice and expertise. Here is an opportunity for you to get some of their best advice on how to get more blog traffic. And you don’t have to...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=LKX4GwZQzyE:mtZt7OT42PU:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=LKX4GwZQzyE:mtZt7OT42PU:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=LKX4GwZQzyE:mtZt7OT42PU:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=LKX4GwZQzyE:mtZt7OT42PU:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=LKX4GwZQzyE:mtZt7OT42PU:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=LKX4GwZQzyE:mtZt7OT42PU:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=LKX4GwZQzyE:mtZt7OT42PU:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=LKX4GwZQzyE:mtZt7OT42PU:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=LKX4GwZQzyE:mtZt7OT42PU:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=LKX4GwZQzyE:mtZt7OT42PU:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/LKX4GwZQzyE\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://www.butlerblog.com/2015/02/02/5-top-bloggers-teach-you-how-to-drive-traffic-to-your-blog/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://www.butlerblog.com/2015/02/02/5-top-bloggers-teach-you-how-to-drive-traffic-to-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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Building Successful Membership Sites: What You Need To Know\";s: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:\"http://feedproxy.google.com/~r/butlerblog/~3/Kxe5VDIbYxg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://www.butlerblog.com/2015/01/30/how-to-build-successful-membership-sites/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jan 2015 15:54:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:10:{i:0;a:5:{s:4:\"data\";s:13:\"Blogging Tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"Building Trust\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"Business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:17:\"Business Modeling\";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:5:{s:4:\"data\";s:17:\"content-marketing\";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:5:{s:4:\"data\";s:16:\"membership-sites\";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:5:{s:4:\"data\";s:8:\"monetize\";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:5:{s:4:\"data\";s:15:\"Premium 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:\"\";}i:9;a:5:{s:4:\"data\";s:16:\"Web Entrepreneur\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://www.butlerblog.com/?page_id=3302\";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:1774:\"Many web entrepreneurs and freelancers would argue that the membership site is the ultimate business model. As someone who has utilized this concept for coming close to two decades, I would agree. I...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=Kxe5VDIbYxg:fzdF2-4qX-w:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=Kxe5VDIbYxg:fzdF2-4qX-w:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=Kxe5VDIbYxg:fzdF2-4qX-w:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=Kxe5VDIbYxg:fzdF2-4qX-w:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=Kxe5VDIbYxg:fzdF2-4qX-w:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=Kxe5VDIbYxg:fzdF2-4qX-w:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=Kxe5VDIbYxg:fzdF2-4qX-w:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=Kxe5VDIbYxg:fzdF2-4qX-w:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=Kxe5VDIbYxg:fzdF2-4qX-w:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=Kxe5VDIbYxg:fzdF2-4qX-w:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/Kxe5VDIbYxg\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://www.butlerblog.com/2015/01/30/how-to-build-successful-membership-sites/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://www.butlerblog.com/2015/01/30/how-to-build-successful-membership-sites/\";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:48:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Change WordPress email settings to reduce spam rejection\";s: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:\"http://feedproxy.google.com/~r/butlerblog/~3/UXBYB7kQsxM/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://www.butlerblog.com/2014/11/24/change-wordpress-email-settings-to-reduce-spam-rejection/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Nov 2014 16:41: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:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:13:\"Blogging Tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"webdev\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:29:\"Wordpress Email Configuration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"wp_mail\";s: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:\"http://www.butlerblog.com/?p=3263\";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:1774:\"I have several other posts on how to improve the reliability of email sent via wp_mail and how to troubleshoot your WordPress email settings, most of which has focused on the sending end. A common...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=UXBYB7kQsxM:4_c9_4U2EAY:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=UXBYB7kQsxM:4_c9_4U2EAY:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=UXBYB7kQsxM:4_c9_4U2EAY:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=UXBYB7kQsxM:4_c9_4U2EAY:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=UXBYB7kQsxM:4_c9_4U2EAY:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=UXBYB7kQsxM:4_c9_4U2EAY:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=UXBYB7kQsxM:4_c9_4U2EAY:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=UXBYB7kQsxM:4_c9_4U2EAY:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=UXBYB7kQsxM:4_c9_4U2EAY:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=UXBYB7kQsxM:4_c9_4U2EAY:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/UXBYB7kQsxM\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://www.butlerblog.com/2014/11/24/change-wordpress-email-settings-to-reduce-spam-rejection/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://www.butlerblog.com/2014/11/24/change-wordpress-email-settings-to-reduce-spam-rejection/\";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:36:\"\n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Weekend Reading List\";s: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:\"http://feedproxy.google.com/~r/butlerblog/~3/7lanse57Iro/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://www.butlerblog.com/2014/10/25/weekend-reading-list-3/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 25 Oct 2014 15:00:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Editorial\";s: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:\"http://www.butlerblog.com/?p=3241\";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:1772:\"One of these weeks, I’m going to get the Weekend Reading List out on a Friday like it’s supposed to be! But at least this is closer (Saturday morning). I’ve got a great list of...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=7lanse57Iro:ra3rzd2c9vI:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=7lanse57Iro:ra3rzd2c9vI:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=7lanse57Iro:ra3rzd2c9vI:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=7lanse57Iro:ra3rzd2c9vI:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=7lanse57Iro:ra3rzd2c9vI:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=7lanse57Iro:ra3rzd2c9vI:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=7lanse57Iro:ra3rzd2c9vI:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=7lanse57Iro:ra3rzd2c9vI:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=7lanse57Iro:ra3rzd2c9vI:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=7lanse57Iro:ra3rzd2c9vI:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/7lanse57Iro\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://www.butlerblog.com/2014/10/25/weekend-reading-list-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://www.butlerblog.com/2014/10/25/weekend-reading-list-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Weekend Reading List\";s: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:\"http://feedproxy.google.com/~r/butlerblog/~3/B16V7TM1ZY8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://www.butlerblog.com/2014/10/17/weekend-reading-list-2/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Oct 2014 16:35:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:15:\"Weekend Reading\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"clickbank\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"content-marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"freelance\";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:5:{s:4:\"data\";s:7:\"writing\";s: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:\"http://www.butlerblog.com/?p=3196\";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:1763:\"This week’s weekend reading list has some great posts on content creation and copywriting. The first is from KISSmetrics – How to Steal Killer Sales Copy Straight from Your...<br/>\n<br/>\n[[ This is a content summary only. Visit my website for full links, other content, and more! ]]<div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=B16V7TM1ZY8:GPC8YEFff7w:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=B16V7TM1ZY8:GPC8YEFff7w:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=B16V7TM1ZY8:GPC8YEFff7w:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=B16V7TM1ZY8:GPC8YEFff7w:dnMXMwOfBR0\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=dnMXMwOfBR0\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=B16V7TM1ZY8:GPC8YEFff7w:F7zBnMyn0Lo\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=B16V7TM1ZY8:GPC8YEFff7w:F7zBnMyn0Lo\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=B16V7TM1ZY8:GPC8YEFff7w:7Q72WNTAKBA\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=7Q72WNTAKBA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=B16V7TM1ZY8:GPC8YEFff7w:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/butlerblog?a=B16V7TM1ZY8:GPC8YEFff7w:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/butlerblog?i=B16V7TM1ZY8:GPC8YEFff7w:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/butlerblog/~4/B16V7TM1ZY8\" height=\"1\" width=\"1\" alt=\"\"/>\";s: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:\"Chad Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://www.butlerblog.com/2014/10/17/weekend-reading-list-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://www.butlerblog.com/2014/10/17/weekend-reading-list-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";s:4:\"href\";s:38:\"http://feeds.feedburner.com/butlerblog\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:3:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:10:\"butlerblog\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:14:\"emailServiceId\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"butlerblog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:18:\"feedburnerHostname\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://feedburner.google.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"r75Hwatt8SfwdhsGX3rvbMIs2bo\";s:13:\"last-modified\";s:29:\"Wed, 07 Oct 2015 17:12:23 GMT\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"date\";s:29:\"Wed, 07 Oct 2015 18:07:45 GMT\";s:7:\"expires\";s:29:\"Wed, 07 Oct 2015 18:07:45 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";}s:5:\"build\";s:14:\"20150511173052\";}','no'),(375,'widget_bp_core_friends_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(376,'widget_xyz_insert_html_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(377,'widget_widget_wpmemwidget','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(9233,'_transient_timeout_endpoint_path_versions','1440298039','no'),(9234,'_transient_endpoint_path_versions','a:35:{s:4:\"mine\";a:1:{i:0;a:4:{s:4:\"path\";s:21:\"/sites/%s/themes/mine\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:6:\"themes\";a:1:{i:0;a:4:{s:4:\"path\";s:16:\"/sites/%s/themes\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:2:\"%s\";a:7:{i:0;a:4:{s:4:\"path\";s:19:\"/sites/%s/themes/%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:21:\"/sites/%s/plugins/%s/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:2;a:4:{s:4:\"path\";s:20:\"/sites/%s/plugins/%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:29:\"/sites/%s/jetpack/modules/%s/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:4;a:4:{s:4:\"path\";s:9:\"/sites/%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:5;a:4:{s:4:\"path\";s:24:\"/sites/%s/post-counts/%s\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.2\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:6;a:4:{s:4:\"path\";s:28:\"/sites/%s/sharing-buttons/%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:7:\"install\";a:2:{i:0;a:4:{s:4:\"path\";s:27:\"/sites/%s/themes/%s/install\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:28:\"/sites/%s/plugins/%s/install\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:6:\"delete\";a:12:{i:0;a:4:{s:4:\"path\";s:26:\"/sites/%s/themes/%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:27:\"/sites/%s/plugins/%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:2;a:4:{s:4:\"path\";s:25:\"/sites/%s/posts/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:25:\"/sites/%s/posts/%d/delete\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:4;a:4:{s:4:\"path\";s:25:\"/sites/%s/media/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:5;a:4:{s:4:\"path\";s:25:\"/sites/%s/media/%d/delete\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:6;a:4:{s:4:\"path\";s:28:\"/sites/%s/comments/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:7;a:4:{s:4:\"path\";s:35:\"/sites/%s/categories/slug:%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:8;a:4:{s:4:\"path\";s:29:\"/sites/%s/tags/slug:%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:9;a:4:{s:4:\"path\";s:31:\"/sites/%s/connections/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:10;a:4:{s:4:\"path\";s:35:\"/sites/%s/sharing-buttons/%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:11;a:4:{s:4:\"path\";s:25:\"/sites/%s/menus/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:7:\"plugins\";a:1:{i:0;a:4:{s:4:\"path\";s:17:\"/sites/%s/plugins\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:6:\"update\";a:2:{i:0;a:4:{s:4:\"path\";s:28:\"/sites/%s/plugins/%s/update/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:21:\"/sites/%s/core/update\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:7:\"modules\";a:1:{i:0;a:4:{s:4:\"path\";s:25:\"/sites/%s/jetpack/modules\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:7:\"updates\";a:1:{i:0;a:4:{s:4:\"path\";s:17:\"/sites/%s/updates\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:10:\"capability\";a:1:{i:0;a:4:{s:4:\"path\";s:23:\"/sites/%s/me/capability\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:4:\"core\";a:1:{i:0;a:4:{s:4:\"path\";s:14:\"/sites/%s/core\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:4:\"sync\";a:1:{i:0;a:4:{s:4:\"path\";s:14:\"/sites/%s/sync\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:12:\"post-formats\";a:1:{i:0;a:4:{s:4:\"path\";s:22:\"/sites/%s/post-formats\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:14:\"page-templates\";a:1:{i:0;a:4:{s:4:\"path\";s:24:\"/sites/%s/page-templates\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:10:\"post-types\";a:1:{i:0;a:4:{s:4:\"path\";s:20:\"/sites/%s/post-types\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:10:\"shortcodes\";a:1:{i:0;a:4:{s:4:\"path\";s:20:\"/sites/%s/shortcodes\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:6:\"render\";a:2:{i:0;a:4:{s:4:\"path\";s:27:\"/sites/%s/shortcodes/render\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:23:\"/sites/%s/embeds/render\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:6:\"embeds\";a:1:{i:0;a:4:{s:4:\"path\";s:16:\"/sites/%s/embeds\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:8:\"reversal\";a:1:{i:0;a:4:{s:4:\"path\";s:25:\"/sites/%s/embeds/reversal\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:5:\"posts\";a:2:{i:0;a:4:{s:4:\"path\";s:16:\"/sites/%s/posts/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:16:\"/sites/%s/posts/\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:2:\"%d\";a:9:{i:0;a:4:{s:4:\"path\";s:18:\"/sites/%s/posts/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:18:\"/sites/%s/posts/%d\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:2;a:4:{s:4:\"path\";s:18:\"/sites/%s/posts/%d\";s:11:\"min_version\";s:3:\"1.2\";s:11:\"max_version\";s:3:\"1.2\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:18:\"/sites/%s/media/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:4;a:4:{s:4:\"path\";s:18:\"/sites/%s/media/%d\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:5;a:4:{s:4:\"path\";s:18:\"/sites/%s/media/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:6;a:4:{s:4:\"path\";s:21:\"/sites/%s/comments/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:7;a:4:{s:4:\"path\";s:24:\"/sites/%s/connections/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:8;a:4:{s:4:\"path\";s:18:\"/sites/%s/menus/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:4:\"POST\";i:1;s:3:\"GET\";}}}s:7:\"name:%s\";a:1:{i:0;a:4:{s:4:\"path\";s:23:\"/sites/%s/posts/name:%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:7:\"slug:%s\";a:4:{i:0;a:4:{s:4:\"path\";s:23:\"/sites/%s/posts/slug:%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:23:\"/sites/%s/posts/slug:%s\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:2;a:4:{s:4:\"path\";s:28:\"/sites/%s/categories/slug:%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:22:\"/sites/%s/tags/slug:%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:3:\"new\";a:11:{i:0;a:4:{s:4:\"path\";s:19:\"/sites/%s/posts/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:19:\"/sites/%s/posts/new\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:2;a:4:{s:4:\"path\";s:19:\"/sites/%s/posts/new\";s:11:\"min_version\";s:3:\"1.2\";s:11:\"max_version\";s:3:\"1.2\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:19:\"/sites/%s/media/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:4;a:4:{s:4:\"path\";s:19:\"/sites/%s/media/new\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:5;a:4:{s:4:\"path\";s:30:\"/sites/%s/posts/%d/replies/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:6;a:4:{s:4:\"path\";s:33:\"/sites/%s/comments/%d/replies/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:7;a:4:{s:4:\"path\";s:24:\"/sites/%s/categories/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:8;a:4:{s:4:\"path\";s:18:\"/sites/%s/tags/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:9;a:4:{s:4:\"path\";s:29:\"/sites/%s/sharing-buttons/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:10;a:4:{s:4:\"path\";s:19:\"/sites/%s/menus/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:7:\"restore\";a:2:{i:0;a:4:{s:4:\"path\";s:26:\"/sites/%s/posts/%d/restore\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:26:\"/sites/%s/posts/%d/restore\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:5:\"media\";a:2:{i:0;a:4:{s:4:\"path\";s:16:\"/sites/%s/media/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:16:\"/sites/%s/media/\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:8:\"comments\";a:1:{i:0;a:4:{s:4:\"path\";s:19:\"/sites/%s/comments/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:7:\"replies\";a:1:{i:0;a:4:{s:4:\"path\";s:27:\"/sites/%s/posts/%d/replies/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:10:\"categories\";a:1:{i:0;a:4:{s:4:\"path\";s:20:\"/sites/%s/categories\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:4:\"tags\";a:1:{i:0;a:4:{s:4:\"path\";s:14:\"/sites/%s/tags\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:5:\"users\";a:1:{i:0;a:4:{s:4:\"path\";s:15:\"/sites/%s/users\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:8:\"settings\";a:1:{i:0;a:4:{s:4:\"path\";s:18:\"/sites/%s/settings\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:11:\"connections\";a:1:{i:0;a:4:{s:4:\"path\";s:22:\"/sites/%s/connections/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:15:\"sharing-buttons\";a:2:{i:0;a:4:{s:4:\"path\";s:26:\"/sites/%s/sharing-buttons/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:25:\"/sites/%s/sharing-buttons\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:5:\"menus\";a:1:{i:0;a:4:{s:4:\"path\";s:16:\"/sites/%s/menus/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}}','no'),(29601,'um_cached_users_queue','0','no'),(1736,'um_cached_role_admin','a:17:{s:4:\"role\";s:5:\"admin\";s:9:\"role_name\";s:5:\"Admin\";s:4:\"core\";s:5:\"admin\";s:18:\"can_access_wpadmin\";s:1:\"1\";s:20:\"can_not_see_adminbar\";s:1:\"0\";s:17:\"can_edit_everyone\";s:1:\"1\";s:19:\"can_delete_everyone\";s:1:\"1\";s:16:\"can_edit_profile\";s:1:\"1\";s:18:\"can_delete_profile\";s:1:\"1\";s:12:\"can_view_all\";s:1:\"1\";s:24:\"can_make_private_profile\";s:1:\"1\";s:26:\"can_access_private_profile\";s:1:\"1\";s:16:\"default_homepage\";s:1:\"1\";s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:14:\"redirect_admin\";s:12:\"after_logout\";s:13:\"redirect_home\";}','yes'),(3059,'um_cache_userdata_54','a:49:{s:2:\"ID\";i:54;s:10:\"user_login\";s:15:\"MaynardKetchum1\";s:9:\"user_pass\";s:34:\"$P$B9UXrREFf2ztA3fAxXrbz7SSvyd38K.\";s:13:\"user_nicename\";s:15:\"maynardketchum1\";s:10:\"user_email\";s:23:\"merlalentotin@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 20:52:23\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"MaynardKetchum1\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"MaynardKetchum1\";s:10:\"first_name\";s:7:\"Maynard\";s:9:\"last_name\";s:7:\"Ketchum\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"FU\";s:5:\"addr2\";s:25:\"2474 Still Pastures Drive\";s:4:\"city\";s:8:\"Columbia\";s:8:\"thestate\";s:2:\"SC\";s:3:\"zip\";s:5:\"29201\";s:7:\"country\";s:13:\"United States\";s:6:\"phone1\";s:12:\"803-454-6499\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(1627,'gourlbox_width','530','yes'),(1615,'gourlversion','','yes'),(29867,'_transient_timeout_cff_feed_json_38865116799580410me','1444280961','no'),(29868,'_transient_cff_feed_json_38865116799580410me','{\"data\":[{\"id\":\"388651167995804_416631891864398\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"This mornings repeat is out! Brian Duckwitz!\",\"message_tags\":{\"29\":[{\"id\":\"10153315215568731\",\"name\":\"Brian Duckwitz\",\"type\":\"user\",\"offset\":29,\"length\":14}]},\"link\":\"http:\\/\\/traffic.libsyn.com\\/thebeloitpod\\/BrianDuckwitz.mp3\",\"source\":\"https:\\/\\/directory.libsyn.com\\/index\\/fool-facebook\\/item_id\\/3847377\",\"name\":\"WADR Morning Show 2nd Hour with Brian Duckwitz\",\"caption\":\"traffic.libsyn.com\",\"description\":\"Today on the WADR Morning show we\'re discussing fencing and literature with Brian Duckwitz. Brian is a fencing expert,a\\u00a0Coach and advisor with the Sabre Rattlers Fencing Club, as well as\\u00a0certified with\\u00a0the United States Fencing Association.\\u00a0\",\"type\":\"video\",\"status_type\":\"shared_story\",\"created_time\":\"2015-10-07T18:11:08+0000\",\"updated_time\":\"2015-10-07T18:11:08+0000\"},{\"id\":\"388651167995804_416418618552392\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"Made the BDN again!\",\"link\":\"http:\\/\\/www.beloitdailynews.com\\/news\\/speakers-diversity-needs-commitment\\/article_a431c126-6c3a-11e5-a5f8-8b8055dce295.html\",\"name\":\"Speakers: Diversity needs commitment\",\"caption\":\"beloitdailynews.com\",\"description\":\"BELOIT \\u2014 For some the idea of cultural competency stops at the legally required diversity training provided by most workplaces.\",\"type\":\"link\",\"status_type\":\"shared_story\",\"created_time\":\"2015-10-06T23:52:39+0000\",\"updated_time\":\"2015-10-06T23:52:39+0000\"},{\"id\":\"388651167995804_416375311890056\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"This mornings repeat! Edie Baran of Janesville Community Radio\'s Art Spark and Courageous Conversations.\",\"link\":\"http:\\/\\/traffic.libsyn.com\\/thebeloitpod\\/ediebaron.mp3\",\"source\":\"https:\\/\\/directory.libsyn.com\\/index\\/fool-facebook\\/item_id\\/3844878\",\"name\":\"WADR Morning Show 2nd Hour with Edie Baran\",\"caption\":\"traffic.libsyn.com\",\"description\":\"Today on the WADR Morning Show with Reese Wood we talk to Edie Baran, host of Janesville Community Radio\'s Art Spark and Courageous Conversations. \\u00a0 Todays Links Facebook.com-Art Spark Diversity Action Team at www.datrockco.org VSA Wisconsin at www.vsawis.org\\/ SpotLight On Kids Theater\",\"type\":\"video\",\"status_type\":\"shared_story\",\"created_time\":\"2015-10-06T17:39:36+0000\",\"updated_time\":\"2015-10-06T17:39:36+0000\"},{\"id\":\"388651167995804_416089031918684\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"Thursday in the 2nd hour of the morning show, at 8am, I have Rivera Sun!!!\",\"message_tags\":{\"61\":[{\"id\":\"374524099383430\",\"name\":\"Rivera Sun\",\"type\":\"user\",\"offset\":61,\"length\":10}]},\"link\":\"http:\\/\\/www.janesvillecommunityradio.com\\/\",\"name\":\"Janesville Community Radio - WADR 103.5 LPFM\",\"caption\":\"janesvillecommunityradio.com\",\"description\":\"We are a group of volunteers in Janesville, Wisconsin, looking to bring community radio station to our community!\",\"type\":\"link\",\"status_type\":\"shared_story\",\"created_time\":\"2015-10-05T15:49:45+0000\",\"updated_time\":\"2015-10-05T15:49:45+0000\"},{\"id\":\"388651167995804_416088088585445\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"Tomorrow morning at 8am I have Janesville Community Radio\'s own Edie Baran. She is the host of ArtSpark with Edie Baran.\",\"message_tags\":{\"31\":[{\"id\":\"208112889351441\",\"name\":\"Janesville Community Radio\",\"type\":\"page\",\"offset\":31,\"length\":26}],\"64\":[{\"id\":\"10204245230596301\",\"name\":\"Edie Baran\",\"type\":\"user\",\"offset\":64,\"length\":10}],\"95\":[{\"id\":\"1549825698583854\",\"name\":\"ArtSpark with Edie Baran\",\"type\":\"page\",\"offset\":95,\"length\":24}]},\"link\":\"https:\\/\\/www.facebook.com\\/artsparkwithediebaran\",\"name\":\"ArtSpark with Edie Baran\",\"description\":\"Janesville Community Radio presents: ArtSpark with Edie Baran. A show about arts. \",\"type\":\"link\",\"object_id\":\"1549825698583854\",\"created_time\":\"2015-10-05T15:44:21+0000\",\"updated_time\":\"2015-10-05T15:44:21+0000\"},{\"id\":\"388651167995804_415609291966658\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"2nd Hour repeat from Friday 10-2-15. Tara Tinder and Bill Macfarlane of Macfarlane Pheasants. Here are two great interviews. Macfarlane Pheasants is having a Fall Festival until 2pm today. Taste test pheasant and other things from Macfarlane Pheasants!\",\"link\":\"http:\\/\\/thebeloitpod.libsyn.com\\/wadr-morning-show-2nd-hour-with-tara-tinder-of-stateline-community-foundation-bill-macfarlane-of-macfarlane-pheasants#33kEPQmxpFhtQMph.01\",\"source\":\"https:\\/\\/directory.libsyn.com\\/index\\/fool-facebook\\/item_id\\/3838518\",\"name\":\"The Beloit podcast: WADR Morning Show 2nd Hour with Tara Tinder of Stateline Community...\",\"caption\":\"thebeloitpod.libsyn.com\",\"description\":\"Here is the repeat for the WADR Morning Show 10-2-15.\\u00a0Tara Tinder of Stateline Community Foundation & Bill MacFarlane of Macfarlane Pheasants\\u00a0\",\"type\":\"video\",\"status_type\":\"shared_story\",\"created_time\":\"2015-10-03T16:50:05+0000\",\"updated_time\":\"2015-10-03T16:50:05+0000\"},{\"id\":\"388651167995804_415183142009273\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"Welcome Rhonda Salyers!\",\"message_tags\":{\"8\":[{\"id\":\"1179721735376893\",\"name\":\"Rhonda Salyers\",\"type\":\"user\",\"offset\":8,\"length\":14}]},\"type\":\"status\",\"created_time\":\"2015-10-01T22:35:22+0000\",\"updated_time\":\"2015-10-01T22:36:12+0000\"},{\"id\":\"388651167995804_415174955343425\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"Friday morning at 8am, in the 2nd hour I have Bill Macfarlane of MacFarlane Pheasants as well as an Interview with Tara Tinder of The Stateline Community Foundation.\",\"story\":\"Reese Wood shared WADR Mornings with Reese Wood\'s post to the group: TBP Community.\",\"story_tags\":{\"0\":[{\"id\":\"916360178434350\",\"name\":\"Reese Wood\",\"type\":\"user\",\"offset\":0,\"length\":10}],\"18\":[{\"id\":\"1706069986295864\",\"name\":\"WADR Mornings with Reese Wood\",\"type\":\"page\",\"offset\":18,\"length\":29}],\"69\":[{\"id\":\"388651167995804\",\"name\":\"TBP Community\",\"type\":\"group\",\"offset\":69,\"length\":13}]},\"link\":\"https:\\/\\/www.facebook.com\\/permalink.php?story_fbid=1722805304622332&id=1706069986295864\",\"name\":\"WADR Mornings with Reese Wood\",\"description\":\"Friday morning at 8am, in the 2nd hour I have Bill Macfarlane of MacFarlane Pheasants as well as an Interview with Tara Tinder of The Stateline Community Foundation.\",\"type\":\"link\",\"created_time\":\"2015-10-01T22:01:27+0000\",\"updated_time\":\"2015-10-01T22:01:27+0000\"},{\"id\":\"388651167995804_415172868676967\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"Call in tomorrow!!! 608 352 9701 \\nI have 4 tickets to give away to the final Mass Incarceration Forum this Saturday. I will take calls until 9am. \\nAlso giving away one keyring Flashing Speaker (Bluetooth capable).\\n-Pocket sized travel speaker with a high quality sound\\n-Connects easily to mobiles and MP3 players\\n-Internal Battery with USB Charger - Recharge from PC for up to 7 hours playback\\n-Flashing LED light - Enjoy a light show whilst you listen to your favourite songs\\n-audio cable and USB power cable provided\\nLive streaming at janesvillecommunityradio.com , mobile app also available, if you are in Janesville tune into 103.5fm.\",\"story\":\"Reese Wood shared WADR Mornings with Reese Wood\'s post to the group: TBP Community.\",\"story_tags\":{\"0\":[{\"id\":\"916360178434350\",\"name\":\"Reese Wood\",\"type\":\"user\",\"offset\":0,\"length\":10}],\"18\":[{\"id\":\"1706069986295864\",\"name\":\"WADR Mornings with Reese Wood\",\"type\":\"page\",\"offset\":18,\"length\":29}],\"69\":[{\"id\":\"388651167995804\",\"name\":\"TBP Community\",\"type\":\"group\",\"offset\":69,\"length\":13}]},\"link\":\"https:\\/\\/www.facebook.com\\/1706069986295864\\/photos\\/a.1715699595332903.1073741828.1706069986295864\\/1722767491292780\\/?type=3\",\"name\":\"WADR Mornings with Reese Wood\",\"description\":\"Call in tomorrow!!! 608 352 9701 \\nI have 4 tickets to give away to the final Mass Incarceration Forum this Saturday. I will take calls until 9am. \\nAlso giving away one keyring Flashing Speaker (Bluetooth capable). \\n\\n-Pocket sized travel speaker with a high quality sound\\n-Connects easily to mobiles and MP3 players\\n-Internal Battery with USB Charger - Recharge from PC for up to 7 hours playback\\n-Flashing LED light - Enjoy a light show whilst you listen to your favourite songs\\n-audio cable and USB power cable provided\\n\\nLive streaming at janesvillecommunityradio.com , mobile app also available, if you are in Janesville tune into 103.5fm.\",\"type\":\"photo\",\"object_id\":\"1722767491292780\",\"created_time\":\"2015-10-01T21:41:17+0000\",\"updated_time\":\"2015-10-01T21:41:17+0000\"},{\"id\":\"388651167995804_415134312014156\",\"from\":{\"name\":\"Reese Wood\",\"id\":\"916360178434350\"},\"message\":\"Today\'s Repeat!\",\"link\":\"https:\\/\\/soundcloud.com\\/wadrmorningshow\\/2nd-hour-with-alicia-reid-of-ravens-wish-art-gallerystudio\",\"name\":\"2nd Hour with Alicia Reid of Raven\'s Wish Art Gallery\\/studio\",\"caption\":\"soundcloud.com\",\"description\":\"WADR Morning Show 2nd Hour with Alicia Reid of Raven\'s Wish Art Gallery\\/studio\",\"type\":\"link\",\"status_type\":\"shared_story\",\"created_time\":\"2015-10-01T17:38:09+0000\",\"updated_time\":\"2015-10-01T17:38:09+0000\"}],\"paging\":{\"previous\":\"https:\\/\\/graph.facebook.com\\/v2.1\\/388651167995804\\/feed?fields=id,from,message,message_tags,story,story_tags,link,source,name,caption,description,type,status_type,object_id,created_time&limit=10&locale=en_US&since=1444241468&access_token=640861236031365|2rENQzxtWtG12DtlZwqfZ6Vu6BE&__paging_token=enc_AdC2gsqExFZA5MnatQSFs18Eg9Tz1arJYIpQZBlqlpRlpMKzw1tbtnImGWlZCFdsLYMQ9ASQJgR5rEVpIAZCypGwZCz3fDoa1w0mDVDZCeLzKPXTvfWgZDZD&__previous=1\",\"next\":\"https:\\/\\/graph.facebook.com\\/v2.1\\/388651167995804\\/feed?fields=id,from,message,message_tags,story,story_tags,link,source,name,caption,description,type,status_type,object_id,created_time&limit=10&locale=en_US&access_token=640861236031365|2rENQzxtWtG12DtlZwqfZ6Vu6BE&until=1443721089&__paging_token=enc_AdALbvIfkfCUzH2Kukubs8xI2PcUuTXRfXTVaEMNBVyDFXH8p7Nv27349jr9bAlqetVjRltuWJHf0xj2wzC6yZAew6R0ZCId6MoI2TpZAFTo0DqSQZDZD\"}}','no'),(28312,'_transient_timeout_jpp_li_b9f160466eb75cb6a068babd5e423f2f','1444075583','no'),(30284,'_transient_jpp_li_b492a7ae7c4685d0aba5753c15615f19','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (76.228.234.21)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:3:\"306\";s:6:\"expire\";i:1444334541;}','no'),(26662,'_transient_jpp_li_8d52697eba71962b78a213b6607bb94e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (93.115.95.205)\";s:17:\"seconds_remaining\";i:1040;s:16:\"blocked_attempts\";s:3:\"216\";s:6:\"expire\";i:1443737129;}','no'),(26670,'_transient_timeout_jpp_li_2c671003d256d0bcfc3de230c4111a66','1443742151','no'),(26671,'_transient_jpp_li_2c671003d256d0bcfc3de230c4111a66','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (91.219.236.218)\";s:17:\"seconds_remaining\";i:390;s:16:\"blocked_attempts\";s:3:\"217\";s:6:\"expire\";i:1443742151;}','no'),(26680,'_transient_jpp_li_b849659c2e96f81c2e45abba6bf1b88f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (199.127.226.150)\";s:17:\"seconds_remaining\";i:627;s:16:\"blocked_attempts\";s:3:\"219\";s:6:\"expire\";i:1443742392;}','no'),(26915,'_transient_timeout_jpp_li_330d7f07d3a06029b53aa88c457d840f','1443792604','no'),(26916,'_transient_jpp_li_330d7f07d3a06029b53aa88c457d840f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (95.128.43.164)\";s:17:\"seconds_remaining\";i:1146;s:16:\"blocked_attempts\";s:3:\"229\";s:6:\"expire\";i:1443792604;}','no'),(29351,'_transient_timeout_jpp_li_b1c0aad978a69f57822ae2ae446c9429','1444215128','no'),(30283,'_transient_timeout_jpp_li_b492a7ae7c4685d0aba5753c15615f19','1444334541','no'),(28516,'_transient_timeout_jpp_li_4d8898bd6195fbc26a15b74dcef59465','1444114395','no'),(28497,'_transient_timeout_jpp_li_9697ff91afba934bcedaa7041fb8ca2b','1444111718','no'),(28498,'_transient_jpp_li_9697ff91afba934bcedaa7041fb8ca2b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (62.141.45.246)\";s:17:\"seconds_remaining\";i:1684;s:16:\"blocked_attempts\";s:3:\"274\";s:6:\"expire\";i:1444111718;}','no'),(28565,'_transient_timeout_jpp_li_bd2ca2036a6f59cc4f657473be119360','1444125055','no'),(28566,'_transient_jpp_li_bd2ca2036a6f59cc4f657473be119360','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (178.17.174.99)\";s:17:\"seconds_remaining\";i:642;s:16:\"blocked_attempts\";s:3:\"277\";s:6:\"expire\";i:1444125055;}','no'),(28568,'_transient_timeout_jpp_li_48bffe5e27fc08533e466fa0009350e9','1444126807','no'),(28569,'_transient_jpp_li_48bffe5e27fc08533e466fa0009350e9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (77.247.181.163)\";s:17:\"seconds_remaining\";i:2391;s:16:\"blocked_attempts\";s:3:\"278\";s:6:\"expire\";i:1444126807;}','no'),(28650,'_transient_timeout_jpp_li_2dd43d01f9e548e99c0fbcf0ef2e8ab9','1444145626','no'),(28651,'_transient_jpp_li_2dd43d01f9e548e99c0fbcf0ef2e8ab9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (5.79.68.161)\";s:17:\"seconds_remaining\";i:1274;s:16:\"blocked_attempts\";s:3:\"279\";s:6:\"expire\";i:1444145626;}','no'),(28652,'_transient_timeout_jpp_li_0c5905fb848e6921e26f671f7c07f738','1444147276','no'),(28653,'_transient_jpp_li_0c5905fb848e6921e26f671f7c07f738','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (149.202.98.160)\";s:17:\"seconds_remaining\";i:2923;s:16:\"blocked_attempts\";s:3:\"280\";s:6:\"expire\";i:1444147276;}','no'),(29499,'_transient_timeout_jpp_li_e062cb9b1363f5093dbb7531fc473763','1444233682','no'),(29188,'_transient_jpp_li_435e605c5bdcae380c60dbe313f7df8e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (96.44.189.100)\";s:17:\"seconds_remaining\";i:3380;s:16:\"blocked_attempts\";s:3:\"286\";s:6:\"expire\";i:1444200349;}','no'),(26661,'_transient_timeout_jpp_li_8d52697eba71962b78a213b6607bb94e','1443737129','no'),(26902,'_transient_timeout_jpp_li_916cb50bf27ec512b223cac28d55e846','1443791463','no'),(28517,'_transient_jpp_li_4d8898bd6195fbc26a15b74dcef59465','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (149.91.83.223)\";s:17:\"seconds_remaining\";i:2490;s:16:\"blocked_attempts\";s:3:\"275\";s:6:\"expire\";i:1444114395;}','no'),(28940,'_transient_timeout_jpp_li_0f2acc50f3d943f5bd1e8513df57fb89','1444161382','no'),(27077,'_transient_jpp_li_7dfeeb023d9c086f5f2a329f7f937c82','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.65.135.226)\";s:17:\"seconds_remaining\";i:291;s:16:\"blocked_attempts\";s:3:\"246\";s:6:\"expire\";i:1443847945;}','no'),(30165,'_transient_timeout_jpp_li_77141ebb0125abb9dfa29650febfe822','1444318745','no'),(30166,'_transient_jpp_li_77141ebb0125abb9dfa29650febfe822','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (37.187.129.166)\";s:17:\"seconds_remaining\";i:2858;s:16:\"blocked_attempts\";s:3:\"305\";s:6:\"expire\";i:1444318745;}','no'),(30005,'_transient_timeout_feed_da8c757f762dcd1ec67339593414ea85','1444336922','no'),(26679,'_transient_timeout_jpp_li_b849659c2e96f81c2e45abba6bf1b88f','1443742392','no'),(26656,'_transient_timeout_jpp_li_fa15085284679e4ee778bdec223c2561','1443738473','no'),(26657,'_transient_jpp_li_fa15085284679e4ee778bdec223c2561','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (81.89.96.88)\";s:17:\"seconds_remaining\";i:2389;s:16:\"blocked_attempts\";s:3:\"215\";s:6:\"expire\";i:1443738473;}','no'),(29780,'_transient_timeout_jpp_li_13f1d4dcf11e211d5b2fc5257b515afc','1444269542','no'),(29781,'_transient_jpp_li_13f1d4dcf11e211d5b2fc5257b515afc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (178.20.55.16)\";s:17:\"seconds_remaining\";i:696;s:16:\"blocked_attempts\";s:3:\"296\";s:6:\"expire\";i:1444269542;}','no'),(26569,'_transient_jpp_li_10d994277cd62fc2da05622a57d711b1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (46.246.124.20)\";s:17:\"seconds_remaining\";i:1772;s:16:\"blocked_attempts\";s:3:\"212\";s:6:\"expire\";i:1443701532;}','no'),(27348,'_transient_timeout_jpp_li_e6c488f31928d81bf9305f178617c410','1443914856','no'),(27349,'_transient_jpp_li_e6c488f31928d81bf9305f178617c410','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.65.135.227)\";s:17:\"seconds_remaining\";i:1906;s:16:\"blocked_attempts\";s:3:\"250\";s:6:\"expire\";i:1443914856;}','no'),(546,'theme_mods_blogsonry','a:5:{i:0;b:0;s:16:\"header_textcolor\";s:5:\"blank\";s:12:\"header_image\";s:115:\"http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner1.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:91;s:3:\"url\";s:115:\"http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner1.jpg\";s:13:\"thumbnail_url\";s:115:\"http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner1.jpg\";s:6:\"height\";i:230;s:5:\"width\";i:1600;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1438135381;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:8:{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\";i:6;s:24:\"bp_core_members_widget-3\";i:7;s:20:\"widget_wpmemwidget-3\";}s:9:\"sidebar-2\";a:0:{}}}}','yes'),(499,'theme_mods_mantra-child','a:10:{i:0;b:0;s:16:\"background_color\";s:6:\"000000\";s:12:\"header_image\";s:105:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner2.jpg\";s:17:\"header_image_data\";a:5:{s:13:\"attachment_id\";i:43;s:3:\"url\";s:105:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner2.jpg\";s:13:\"thumbnail_url\";s:105:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner2.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:75;}s:16:\"background_image\";s:81:\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/WP_20150711_035.jpg\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_position_x\";s:6:\"center\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:1:{s:3:\"top\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:21:\"secondary-widget-area\";a:0:{}s:17:\"third-widget-area\";a:0:{}s:18:\"fourth-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}s:25:\"above-content-widget-area\";a:0:{}s:25:\"below-content-widget-area\";a:0:{}}s:4:\"time\";i:1438111115;}}','yes'),(575,'powerpress_general','a:32:{s:15:\"advanced_mode_2\";s:1:\"0\";s:9:\"timestamp\";i:1438173934;s:14:\"display_player\";s:1:\"1\";s:17:\"player_aggressive\";s:1:\"1\";s:8:\"channels\";s:1:\"1\";s:22:\"display_player_excerpt\";s:1:\"0\";s:23:\"disable_dashboard_stats\";s:1:\"0\";s:9:\"metamarks\";s:1:\"0\";s:16:\"episode_box_mode\";s:1:\"2\";s:8:\"set_size\";s:1:\"0\";s:12:\"set_duration\";s:1:\"0\";s:12:\"auto_enclose\";s:1:\"0\";s:13:\"hide_warnings\";s:1:\"0\";s:20:\"permalink_feeds_only\";s:1:\"0\";s:9:\"redirect1\";s:0:\"\";s:9:\"redirect2\";s:0:\"\";s:9:\"redirect3\";s:0:\"\";s:18:\"disable_appearance\";s:1:\"0\";s:15:\"subscribe_links\";s:1:\"1\";s:15:\"subscribe_label\";s:0:\"\";s:16:\"new_window_width\";s:0:\"\";s:17:\"new_window_height\";s:0:\"\";s:22:\"disable_dashboard_news\";s:1:\"0\";s:19:\"allow_feed_comments\";s:1:\"0\";s:14:\"player_options\";s:1:\"0\";s:15:\"player_function\";s:1:\"1\";s:12:\"podcast_link\";s:1:\"1\";s:13:\"podcast_embed\";s:1:\"0\";s:21:\"podcast_embed_in_feed\";s:1:\"0\";s:3:\"m4a\";s:0:\"\";s:19:\"new_window_nofactor\";s:0:\"\";s:15:\"playlist_player\";s:1:\"1\";}','yes'),(576,'powerpress_feed','a:26:{s:5:\"title\";s:18:\"The Beloit Podcast\";s:15:\"itunes_subtitle\";s:18:\"The Beloit Podcast\";s:14:\"itunes_summary\";s:60:\"Beloit WI. Our people and places; past, present, and future.\";s:12:\"itunes_cat_1\";s:5:\"04-05\";s:12:\"itunes_cat_2\";s:0:\"\";s:12:\"itunes_cat_3\";s:0:\"\";s:15:\"itunes_explicit\";s:1:\"2\";s:5:\"email\";s:22:\"thebeloitpod@gmail.com\";s:12:\"itunes_image\";s:157:\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpt1/v/t1.0-9/11709235_899926306744404_4752313086885996034_n.jpg?oh=946d1ce45ed9ce3b992f7551bc883f63&oe=5640B216\";s:22:\"enhance_itunes_summary\";s:0:\"\";s:18:\"itunes_author_post\";s:0:\"\";s:22:\"subscribe_page_link_id\";s:0:\"\";s:24:\"subscribe_page_link_href\";s:0:\"\";s:24:\"subscribe_page_link_text\";s:0:\"\";s:8:\"apply_to\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:13:\"posts_per_rss\";s:0:\"\";s:12:\"rss_language\";s:0:\"\";s:9:\"copyright\";s:0:\"\";s:8:\"location\";s:0:\"\";s:9:\"frequency\";s:0:\"\";s:15:\"parental_rating\";s:0:\"\";s:10:\"itunes_url\";s:0:\"\";s:18:\"itunes_talent_name\";s:0:\"\";s:19:\"itunes_new_feed_url\";s:0:\"\";s:10:\"rss2_image\";s:0:\"\";}','yes'),(29550,'_transient_timeout_feed_4d9a07aa61eb536bf8fe69cbf87489c7','1444284465','no'),(29551,'_transient_feed_4d9a07aa61eb536bf8fe69cbf87489c7','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"PowerPress Podcast\";s: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:32:\"http://www.powerpresspodcast.com\";s: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:43:\"Sharing Information to empower your Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Sep 2015 03:03:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://wordpress.org/?v=4.3.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:10:{i:0;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"‘Blockers’ could be a boon for podcasting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://www.powerpresspodcast.com/2015/09/25/blockers-could-be-a-boon-for-podcasting/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://www.powerpresspodcast.com/2015/09/25/blockers-could-be-a-boon-for-podcasting/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Sep 2015 20:27: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s: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:40:\"http://www.powerpresspodcast.com/?p=4396\";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:320:\"Ad blockers are being used more and more, filtering advertisements out of Web pages and mobile devices. In fact, iOS 9 has recently allowed consumers to add an ad blocker app to block all mobile ads. And the trend is growing. With a large percentage of content being consumed on mobile devices, this seems like […]\";s: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:5:\"cathy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2996:\"<p><span style=\"font-weight: 400;\">Ad blockers are being used more and more, filtering advertisements out of Web pages and mobile devices. In fact, iOS 9 has recently allowed consumers to add an ad blocker app to block all mobile ads. And the trend is growing. With a large percentage of content being consumed on mobile devices, this seems like it could be disastrous for advertisers who might find access to consumers stymied. Yet the good news is that ad blocking doesn’t affect podcasting: Podcasting is </span><i><span style=\"font-weight: 400;\">the </span></i><span style=\"font-weight: 400;\">safe mobile advertising. </span></p>\n<p><span style=\"font-weight: 400;\">This is an opportunity for shows and advertisers. </span></p>\n<p><span style=\"font-weight: 400;\">Podcast advertising allows companies to directly target audiences who listen to or view a program. The ads are embedded and 100 percent targeted by content type and content creator, plus the listener has purposefully chosen to listen or watch the content.</span></p>\n<p><span style=\"font-weight: 400;\">This comes at a time when advertisers have begun to understand the benefits of broadening their horizons and not focusing only on the larger shows. While the larger shows are great for reaching a big audience, consumers will at most hear the vendor’s ad once a week. If advertisers buy wide, including smaller, highly targeted shows, they will reach the same or larger scope of audience — targeted and engaged consumers — with ad spots being spread out among many shows.</span></p>\n<p><span style=\"font-weight: 400;\">Nick Quah, </span><a href=\"http://hotpod.audio/\"><span style=\"font-weight: 400;\">Hot Pod Newsletter</span></a><span style=\"font-weight: 400;\">, </span><a href=\"mailto:hotpodnewsletter@gmail.com\"><span style=\"font-weight: 400;\">hotpodnewsletter@gmail.com</span></a><span style=\"font-weight: 400;\">, said it well. “Technological intervention is a function of audio technology not being all that advanced (or existent) just yet, which should conceivably be the draw for forward-thinking advertisers looking to define the space,” he writes. “It’s fertile new ground that they can themselves shape; it’s literally what we talk about when we refer to something as ‘the Wild West.’”</span></p>\n<p><span style=\"font-weight: 400;\">Podcasters, you need to make sure your shows are advertising-ready. </span><a href=\"http://create.blubrry.com/resources/blubrry-podcast-advertising/\"><span style=\"font-weight: 400;\">Take a look on Blubrry</span></a><span style=\"font-weight: 400;\"> at what makes a show ready for advertising and see if your show is a good fit for what we have to offer. Advertisers, we have literally thousands of shows for you to pick from to go-wide and reach the audience you may be missing now.</span></p>\n<p><span style=\"font-weight: 400;\">Podcast advertising is in for an exciting ride and we’re looking forward to having more and more of you come along.</span></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://www.powerpresspodcast.com/2015/09/25/blockers-could-be-a-boon-for-podcasting/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:43:\"\n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Podcast Celebrations and Downturns\";s: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:79:\"http://www.powerpresspodcast.com/2015/09/25/podcast-celebrations-and-downturns/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://www.powerpresspodcast.com/2015/09/25/podcast-celebrations-and-downturns/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Sep 2015 16:17:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"PowerPress Podcast\";s: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:40:\"http://www.powerpresspodcast.com/?p=4375\";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:358:\"This week on the PowerPress Podcast we had Angelo, our lead developer at Blubrry join MacKenzie on the podcast. We spoke about getting involved in podcasting via International Podcast Day, MacKenzie’s latest podcasting struggle, the iOS 9 update, and even snuck in a PowerPress tip as well. Listen in to hear about why you should participate […]\";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:103:\"http://media.blubrry.com/powerpress_podcast/content.blubrry.com/powerpress_podcast/PPP_Ep_2_9-25-15.mp3\";s:6:\"length\";s:8:\"30780382\";s:4:\"type\";s:10:\"audio/mpeg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Mackenzie Bennett\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1070:\"<p>This week on the PowerPress Podcast we had Angelo, our lead developer at Blubrry join MacKenzie on the podcast. We spoke about getting involved in podcasting via International Podcast Day, MacKenzie’s latest podcasting struggle, the iOS 9 update, and even snuck in a PowerPress tip as well. Listen in to hear about why you should participate in Podcast Day, what MacKenzie needed guidance on, and get some great tips from Angelo about SEO. Subscribe on iTunes and Android. Take a look at our setup in the pictures below.</p>\n<p><strong>Show Links:</strong></p>\n<p><a href=\"http://internationalpodcastday.com/\" target=\"_blank\">International Podcast Day</a></p>\n<p><a href=\"https://forums.developer.apple.com/thread/5176\" target=\"_blank\">iOS 9 Forum</a></p>\n<p> </p>\n<p><a href=\"http://www.powerpresspodcast.com/wp-content/uploads/2015/09/Episode-2-Pic.jpg\"><img class=\"alignnone wp-image-4391 size-large\" src=\"http://www.powerpresspodcast.com/wp-content/uploads/2015/09/Episode-2-Pic-1024x705.jpg\" alt=\"Episode 2 Pic\" width=\"1024\" height=\"705\" /></a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://www.powerpresspodcast.com/2015/09/25/podcast-celebrations-and-downturns/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:43:\"\n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"PowerPress Podcast Relaunch\";s: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:72:\"http://www.powerpresspodcast.com/2015/09/10/powerpress-podcast-relaunch/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://www.powerpresspodcast.com/2015/09/10/powerpress-podcast-relaunch/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Sep 2015 21:34:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"PowerPress Podcast\";s: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:40:\"http://www.powerpresspodcast.com/?p=4355\";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:322:\"The PowerPress Podcast has been in action for a couple years, largely as a Blubrry community announcement show. So today we have a brand new show for you, a relaunch of the PowerPress Podcast hosted by MacKenzie of the Blubrry team. MacKenzie is joined by RawVoice CEO Todd Cochrane to talk about the new show. […]\";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:101:\"http://media.blubrry.com/powerpress_podcast/content.blubrry.com/powerpress_podcast/POW-2015-09-10.mp3\";s:6:\"length\";s:8:\"33336528\";s:4:\"type\";s:10:\"audio/mpeg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Mackenzie Bennett\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1025:\"<p>The PowerPress Podcast has been in action for a couple years, largely as a Blubrry community announcement show. So today we have a brand new show for you, a relaunch of the PowerPress Podcast hosted by MacKenzie of the Blubrry team. MacKenzie is joined by RawVoice CEO Todd Cochrane to talk about the new show.</p>\n<p>In this format we will have a different co-host from the Blubrry team each episode where we cover new podcaster issues, tips and tricks and news: We will have our seasoned team provide insights for established podcasters in their areas of expertise. Travel with MacKenzie as a newbie podcaster as well. Be sure to check us out in two weeks for episode 2 of this relaunch. Subscribe on iTunes and Android.</p>\n<p><strong>Show Links:<br />\n</strong><a href=\"https://www.patreon.com/blubrry\">PowerPress Patreon Campaign</a></p>\n<p>Note: We will only push Blubrry business / community announcements out via video on a separate podcast feed. We will not intermix the primary feed going forward.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://www.powerpresspodcast.com/2015/09/10/powerpress-podcast-relaunch/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Why you should use your own Podcast feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://www.powerpresspodcast.com/2015/09/03/why-you-should-use-your-own-wordpress-feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://www.powerpresspodcast.com/2015/09/03/why-you-should-use-your-own-wordpress-feed/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Sep 2015 21:20:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Blubrry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"PowerPress\";s: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:40:\"http://www.powerpresspodcast.com/?p=4346\";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:328:\"We are podcasters first at Blubrry, and we practice what we preach in providing tools that allow you to implement best processes for your podcast. We also know the strategic advantages of using a personal podcast feed from your own dot-com when it comes to obtaining the best positioning from Google and Apple for show […]\";s: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:5:\"cathy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3131:\"<p><span style=\"font-weight: 400;\">We are podcasters first at </span><a href=\"https://www.blubrry.com/\"><span style=\"font-weight: 400;\">Blubrry</span></a><span style=\"font-weight: 400;\">, and we practice what we preach in providing tools that allow you to implement best processes for your podcast. We also know the strategic advantages of using a personal podcast feed from your own dot-com when it comes to obtaining the best positioning from Google and Apple for show and episode discovery.</span><span style=\"font-weight: 400;\"><br />\n</span><span style=\"font-weight: 400;\"><br />\n</span><span style=\"font-weight: 400;\">Some companies employ outright scare tactics to make podcasters believe they should use their solution. But let me tell you, those tactics are used for one thing: Control. They want to own your production pipeline.</span></p>\n<p><span style=\"font-weight: 400;\">Todd Cochrane, our CEO and Podcast Hall of Fame inductee, has been evangelizing for the past 10 years the need to control your most important podcasting asset: your RSS feed.</span></p>\n<p><span style=\"font-weight: 400;\">Here are five items to consider when choosing who owns and controls your feed:</span></p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Intellectual property – Controlling your RSS feed and using your own domain are the only ways to have 100 percent control of your intellectual property. This also ensures you are able to move to any service or host without losing any subscribers or SEO you have established.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brand – Blubrry believes that “you should promote </span><i><span style=\"font-weight: 400;\">you</span></i><span style=\"font-weight: 400;\">” and your show/brand instead of promoting us or anyone else. It’s your show. It’s your site. Control all of it.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Up-to-date standards – Podcasting is constantly evolving. Using WordPress along with PowerPress ensures that you have the most up-to-date RSS and podcasting standards.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Feed maximizer – With feed maximizer in PowerPress, you are free to have the maximum number of episodes in your feed and still stay under any feed size limits. Not all third party feeds will do this.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SEO optimization – We have provided within PowerPress the ability to apply SEO techniques that allow your episodes to be positioned at the top of search results on the Web or in podcast directories such as iTunes.</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">Do not be swayed! It’s your show; build your brand and do not allow a third party to take your RSS feed and hijack links from your site back to theirs. Find out more about </span><a href=\"http://create.blubrry.com/resources/powerpress/\"><span style=\"font-weight: 400;\">Blubrry PowerPress</span></a><span style=\"font-weight: 400;\">, and protect what’s yours.</span></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://www.powerpresspodcast.com/2015/09/03/why-you-should-use-your-own-wordpress-feed/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:46:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Blubrry Introduces PowerPress Sites\";s: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:80:\"http://www.powerpresspodcast.com/2015/07/29/blubrry-introduces-powerpress-sites/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://www.powerpresspodcast.com/2015/07/29/blubrry-introduces-powerpress-sites/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2015 12:09:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Blubrry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"PowerPress\";s: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:40:\"http://www.powerpresspodcast.com/?p=4333\";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:343:\"Blubrry is incredibly excited to offer podcasters in early August a free WordPress site for every Blubrry Podcast hosting user. PowerPress Sites, WordPress website hosting for your podcast, will allow you to sign up for a podcast-hosting account, starting at $12 a month, and for free have everything you need to create and grow your […]\";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:101:\"http://media.blubrry.com/powerpress_podcast/content.blubrry.com/powerpress_podcast/PPP-2015-07-29.mp4\";s:6:\"length\";s:9:\"391854916\";s:4:\"type\";s:9:\"video/mp4\";}}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:\"todd\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3043:\"<p><a href=\"http://www.powerpresspodcast.com/wp-content/uploads/2015/07/ppstodd.png\"><img class=\"alignleft size-medium wp-image-4338\" src=\"http://www.powerpresspodcast.com/wp-content/uploads/2015/07/ppstodd-300x244.png\" alt=\"ppstodd\" width=\"300\" height=\"244\" /></a>Blubrry is incredibly excited to offer podcasters in early August a free WordPress site for every Blubrry Podcast hosting user. PowerPress Sites, <a href=\"http://blubrry.com/sites\">WordPress website hosting for your podcast</a>, will allow you to sign up for a podcast-hosting account, starting at $12 a month, and for free have everything you need to create and grow your show.</p>\n<p>Each WordPress site is managed by Blubrry taking away the maintenance headaches, and includes Premium Podcast Statistics, meaning you can track your podcast with the most reliable and accurate statistics in the business. With PowerPress Sites, Blubrry is providing a one-stop shop for all of the services you need for a podcast — no one else in podcasting has packaged a best of service package.</p>\n<p>PowerPress Sites will employ the best practices for podcasting and focuses on your freedom. Build your podcast with these services, and we’ll stay out of your way: We want you to use PowerPress sites to build an amazing brand and show; the best part you are 100% in control of your brand and listener experience. You can upgrade and grow your site as your podcast grows — without worrying about moving to another site when you outgrow the one you have.</p>\n<p>Setup includes answering a few quick questions; you’ll have yourself a podcast optimized WordPress site in minutes. The basic level service even includes essential plugins pre-loaded. This is a full functional content management system to diversify your content by, Including pictures, blog posts, and videos. You want to build a huge audience, right? We are providing the tools to do so a well-rounded website from PowerPress Sites accomplishes just that.</p>\n<p>PowerPress Sites, available in early August, is provided for free with every podcast-hosting account. If you’re interested in all the features, read about them on our <a href=\"http://blubrry.com/sites\">PowerPress Sites WordPress Hosting Page</a>.</p>\n<p>Here only some of what you get with every hosting account.</p>\n<p>PowerPress Site<br />\n– PowerPress – Post, Upload, Publish<br />\n– Quick setup guide<br />\n– Managed WordPress site<br />\n– Mobile Ready Template<br />\n– Podcast Optimized Template<br />\n– Essential plugins Pre-Loaded<br />\n– SEO optimization<br />\nHosting<br />\n– World Class Media Hosting (CDN)<br />\n– 25% Storage Overage Allowance. (No Fault)<br />\n– Replace Media anytime (Long Tail Podcasting)<br />\n– ID3 Tagging<br />\nStats<br />\n– Download and Play totals<br />\n– Trending<br />\n– Applications<br />\n– Traffic Sources</p>\n<p>See our <a href=\"http://www.prweb.com/releases/2015/07/prweb12874224.htm\">Press Release</a>!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.powerpresspodcast.com/2015/07/29/blubrry-introduces-powerpress-sites/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"10 years of safeguarding and advancing podcasting\";s: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:94:\"http://www.powerpresspodcast.com/2015/07/23/10-years-of-safeguarding-and-advancing-podcasting/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://www.powerpresspodcast.com/2015/07/23/10-years-of-safeguarding-and-advancing-podcasting/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jul 2015 15:40:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s: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:40:\"http://www.powerpresspodcast.com/?p=4326\";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:324:\"Hard to believe it was 10 years ago. iTunes had just rolled out podcast support in this burgeoning new medium, opening podcasting up to the mainstream. Companies left and right popped up to capitalize on the podcasting boom — it was a time filled with excitement and anticipation as we threw our all into the […]\";s: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:5:\"cathy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2291:\"<p>Hard to believe it was 10 years ago. iTunes had just rolled out podcast support in this burgeoning new medium, opening podcasting up to the mainstream. Companies left and right popped up to capitalize on the podcasting boom — it was a time filled with excitement and anticipation as we threw our all into the podcast space.</p>\n<p>Soon, however, independent innovation slowed down as reliance on iTunes became the norm and, sadly, within a couple of years most of the upstarts were gone, having burned through ideas and venture capital funding. Not us.</p>\n<p><a href=\"http://rawvoice.com\">RawVoice </a>stayed lean and mean, we worked advertising deals for podcasters, launched our first network and started to build the measurement and media platforms that power our business today. We launched <a href=\"http://blubrry.com\">Blubrry.com</a>, our podcast community and directory, and acquired <a href=\"http://techpodcasts.com/\">Tech Podcast Network</a>, a directory of tech related shows.</p>\n<p>When a popular podcast plugin that integrated core functionality into the majority of podcast sites using WordPress — the leading open-source content creation blogging and website content management tool — was no longer being supported we knew the space was going to need a plugin. We set out to build what today is the <a href=\"http://create.blubrry.com/resources/powerpress/\">PowerPress Podcasting Plugin</a>, the No. 1 podcasting plugin for WordPress.</p>\n<p>All the while, we’ve been evolving / innovating, designing tools to best publish and promote content; making audience growth and advertising opportunities easily accessible and comprehensive for our podcast family. We represent the interests of our podcasters at the Interactive Advertising Bureau (IAB) — Angelo Mandato, our CIO, is heavily embedded on the measurement committee and is providing unparalleled knowledge on podcast measurement.</p>\n<p>And now, at the end of the month, we’ll be sharing with you something that’s downright revolutionary. Stay tuned! We’re pretty excited about this because we <i>know </i>how excited you’ll be when we roll this out.</p>\n<p>Ten years ago, we stood by podcasting and podcasters, but we never stood still. Thanks for coming along for the ride.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://www.powerpresspodcast.com/2015/07/23/10-years-of-safeguarding-and-advancing-podcasting/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"PowerPress poised to advance through Patreon\";s: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:89:\"http://www.powerpresspodcast.com/2015/07/03/powerpress-poised-to-advance-through-patreon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://www.powerpresspodcast.com/2015/07/03/powerpress-poised-to-advance-through-patreon/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Jul 2015 14:33: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s: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:40:\"http://www.powerpresspodcast.com/?p=4322\";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:357:\"For some businesses, a ‘mission’ and ‘vision’ are little more than flowery language to help them look and feel all warm and fuzzy about themselves. At Blubrry/RawVoice, they’re our quest. We are always looking for new ways to expand our podcast family’s opportunities, brand, access and audiences. And in that vein, we’ve found a new […]\";s: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:5:\"cathy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2416:\"<p>For some businesses, a ‘mission’ and ‘vision’ are little more than flowery language to help them look and feel all warm and fuzzy about themselves. At Blubrry/RawVoice, they’re our quest. We are always looking for new ways to expand our podcast family’s opportunities, brand, access and audiences. And in that vein, we’ve found a new source to help fund PowerPress development through <a href=\"https://www.patreon.com/blubrry\">Patreon</a>.</p>\n<p>Not familiar with Patreon? It’s host to an ongoing crowdfunding monthly or per creation donation. The<a href=\"https://www.patreon.com/blubrry\"> PowerPress Patreon</a> page is set up for monthly amounts because our plugin development and support is ongoing. Patreon also features rewards and milestones: rewards for our generous patrons and milestones we work toward each month.</p>\n<p>Powering more than 40,000+ podcasts, <a href=\"http://create.blubrry.com/resources/powerpress/?PowerPress=Download+%28free%29\">PowerPress</a> is constantly maintained and updated. It’s a comprehensive tool for content creators, enabling them to publish their programs on their own website. Importantly, it’s free and — more importantly — we’re gonna keep it that way.</p>\n<p>Many of you guys already support us by using our Podcast Hosting and Professional Podcast Stats accounts and we thank you. Still, we want to do more for you, the content and the content creators you love. We are deeply committed to providing this free tool to the podcasting world.</p>\n<p>Our Patreon supporters will find Blubrry has an extensive road-map of upgrades and new enhancements to the plugin in the works. Our Patrons will be provided regular insider looks at our features before they are released. We are committed to considering and implementing ideas from our Patrons.</p>\n<p>We’re hoping this support will help us to:</p>\n<ul>\n<li> Maintain a 30-60 day Enhancement Cycle.</li>\n<li> Patreon Feature Requests Prioritized.</li>\n<li> Continue to Provide Free Support. (Pay it Forward)</li>\n<li> Hire Dedicated PowerPress Developers (so Angelo can get some sleep).</li>\n</ul>\n<p>We’ve got a lot of exciting podcasting advances on our road map and we’d love it if you came along on the ride! Become a Patron and help us to continue to advance PowerPress and Powering your Podcasts.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://www.powerpresspodcast.com/2015/07/03/powerpress-poised-to-advance-through-patreon/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:43:\"\n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Blubrry Podcasting News 7-2-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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://www.powerpresspodcast.com/2015/07/02/blubrry-podcasting-news-7-2-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://www.powerpresspodcast.com/2015/07/02/blubrry-podcasting-news-7-2-15/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 23:33:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Blubrry\";s: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:40:\"http://www.powerpresspodcast.com/?p=4318\";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:358:\"On this episode of the Blubrry PowerPress Community podcast. I talk about our new Subscribebyemail.com service and our just kicked off Patreon campaign. I also invite all of our community to Podcast Movement at the end of July. Check out Subscribebyemail.com Support our PowerPress Patreon Campaign Get your tickets now for Podcast Movement use the […]\";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:101:\"http://media.blubrry.com/powerpress_podcast/content.blubrry.com/powerpress_podcast/PPP-2015-07-02.mp4\";s:6:\"length\";s:9:\"411566643\";s:4:\"type\";s:9:\"video/mp4\";}}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:\"todd\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:778:\"<p>On this episode of the Blubrry PowerPress Community podcast. I talk about our new <a href=\"http://Subscribebyemail.com\">Subscribebyemail.com</a> service and our just kicked off <a href=\"https://www.patreon.com/blubrry\">Patreon</a> campaign. I also invite all of our community to Podcast Movement at the end of July. </p>\n<p>Check out <a href=\"http://Subscribebyemail.com\">Subscribebyemail.com</a><br />\nSupport our <a href=\"https://www.patreon.com/blubrry\">PowerPress Patreon Campaign</a></p>\n<p>Get your tickets now for <a href=\"http://podcastmovement.com/\">Podcast Movement</a> use the promo code “NMS” and save 10%. Todd and MacKenzie will be at their along with up to around a 1000 podcasters. The event is shaping up to be the primary podcast event of the year.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://www.powerpresspodcast.com/2015/07/02/blubrry-podcasting-news-7-2-15/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Congratulations, Todd, on your Hall of Fame induction!\";s: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:96:\"http://www.powerpresspodcast.com/2015/06/26/congratulations-todd-on-your-hall-of-fame-induction/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"http://www.powerpresspodcast.com/2015/06/26/congratulations-todd-on-your-hall-of-fame-induction/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Jun 2015 20:19:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s: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:40:\"http://www.powerpresspodcast.com/?p=4315\";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:377:\"Join the RawVoice CEO and other leading-edge podcasters at the inaugural Academy of Podcaster’s Awards Congratulations to RawVoice/Blubrry founder and podcast pioneer Todd Cochrane for his induction into the Podcaster’s Hall of Fame in its inaugural year. Todd has been executive producer of Geek News Central, , an audio and video tech show, since October 2004. […]\";s: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:5:\"cathy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3210:\"<h3><i>Join the RawVoice CEO and other leading-edge podcasters at the inaugural Academy of Podcaster’s Awards</i></h3>\n<p>Congratulations to RawVoice/Blubrry founder and podcast pioneer Todd Cochrane for his induction into the Podcaster’s Hall of Fame in its inaugural year. Todd has been executive producer of <a href=\"http://geeknewscentral.com/\"><i>Geek News Central, , an audio and video tech show,</i> </a>since October 2004. He is also the co-host of the <a href=\"http://newmediashow.com/\"><em>New Media Show</em> </a>and is the founder of the <a href=\"http://www.podcastawards.com/\">People’s Choice Podcast Awards</a> and the <a href=\"http://techpodcasts.com/\">Tech Podcast Network</a>.</p>\n<p>In 2005, Todd wrote the <i><a href=\"http://www.amazon.com/Podcasting-Do-It-Yourself-Guide-Todd-Cochrane/dp/0764597787\">Podcasting the Do-it-Yourself Guide</a></i>, the first book on podcasting. He is the CEO of <a href=\"http://rawvoice.com\">RawVoice</a>, representing 27,000 media creators and podcast networks. RawVoice provides podcast data analytics, media hosting and advertising opportunities.</p>\n<p>Other inductees include:</p>\n<ul>\n<li><a href=\"http://podcastmovement.com/speaker/danny-pena-aofp-hall-of-fame-inductee/\">DANNY PEÑA </a></li>\n<li><a href=\"http://podcastmovement.com/speaker/scott-sigler/\">SCOTT SIGLER </a></li>\n<li><a href=\"http://podcastmovement.com/speaker/mur-lafferty/\">MUR LAFFERTY </a></li>\n<li><a href=\"http://podcastmovement.com/speaker/adam-curry/\">ADAM CURRY </a></li>\n<li><a href=\"http://podcastmovement.com/speaker/leo-laporte/\">LEO LAPORTE</a></li>\n</ul>\n<p>Todd will be honored Friday, July 31, at the inaugural<a href=\"http://academyofpodcasters.com/about-the-show/\"> Academy of Podcaster’s Awards </a>at the Omni Fort Worth in Fort Worth, Texas.</p>\n<p>“I can think of no one more deserving of being in the Podcast Academy HOF than Todd Cochrane,” said Gary Leland, host of <a href=\"http://garyleland.com/category/leland-show/\"><i>The Gary Leland Show</i></a><i>. “</i>Todd has been involved in podcasting since the beginning days of the technology. He has helped shape the world of podcasting, by helping others grow their podcasts. Todd is a true podcast pioneer.”</p>\n<p>RawVoice CEO Angelo Mandato, added, “Todd Cochrane is more than just a pioneer in the world of podcasting, he’s a visionary who has insured that the interests of all content creators are first and foremost in the podcasting evolution.”</p>\n<p>Cochrane said he looks forward to seeing his friends at the awards ceremony July 31.</p>\n<p>“I am humbled to have been inducted into the podcast Hall of Fame. A large credit goes to my audience at Geek News Central and my team at RawVoice/Blubrry. Together we have worked hard to accomplish a lot for the podcast community,” Cochrane said. “It should not go without saying that my podcast sponsors have some credit here as well in that through their financial support my show has been able to continue for 10 years.</p>\n<p>“Again, I’m humbled to be inducted to the Podcast Hall of Fame and look forward to seeing all the podcasters at podcast movement in July in Fort Worth”</p>\n<p> </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://www.powerpresspodcast.com/2015/06/26/congratulations-todd-on-your-hall-of-fame-induction/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Temporary issue with iTunes listings limited to 20 episodes\";s: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:104:\"http://www.powerpresspodcast.com/2015/06/25/temporary-issue-with-itunes-listings-limited-to-20-episodes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"http://www.powerpresspodcast.com/2015/06/25/temporary-issue-with-itunes-listings-limited-to-20-episodes/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Jun 2015 21:32:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"Blubrry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Podcasters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"PowerPress\";s: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:40:\"http://www.powerpresspodcast.com/?p=4310\";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:345:\"Podcast show listings are currently limited to 20 episodes because of a temporary issue in iTunes. Apple staff are aware of and working on the problem. The problem only affects podcast directory listings in podcasts’ iOS app and desktop iTunes. Subscribed users to your podcast can still see all of the episodes available in your […]\";s: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:6:\"angelo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1673:\"<p>Podcast show listings are currently limited to 20 episodes because of a temporary issue in iTunes. Apple staff are aware of and working on the problem. The problem only affects podcast directory listings in podcasts’ iOS app and desktop iTunes.</p>\n<p>Subscribed users to your podcast can still see all of the episodes available in your podcast feed. The issue is only with directory listings (when viewing your podcast from within the iTunes store).</p>\n<p>Once the problem is resolved, iTunes will once again display up to 300 episodes, depending on what you have configured in your podcast feed.</p>\n<h3>PowerPress users wanting to change their episode limit</h3>\n<p>The WordPress default displays 10 items (episodes) in feeds. You can override this default by going into PowerPress Settings > Feeds tab and changing the value in the “show the most recent” setting to a larger value, as high as 300. Keep in mind that the higher you set this value the larger your feed’s file size will be. If you set this value higher than 50, we strongly recommend enabling the “feed maximizer” option, which ensures your large feed does not include blogging meta data that is not needed for podcasting.</p>\n<h4>Testing your podcast feeds</h4>\n<p>We recommend viewing your feed with the Firefox Web browser if you want to preview and test your podcast feed. Firefox specifically formats RSS feeds in a readable way and will display an error or a blank page if there is a problem parsing your feed. We no longer recommend using Feed Validator services. As of now, none of the feed validating services support secure (https://) URLs.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"http://www.powerpresspodcast.com/2015/06/25/temporary-issue-with-itunes-listings-limited-to-20-episodes/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}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:38:\"http://www.powerpresspodcast.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"type\";i:128;s:7:\"headers\";a:14:{s:4:\"date\";s:29:\"Wed, 07 Oct 2015 18:16:36 GMT\";s:6:\"server\";s:21:\"Apache/2.4.7 (Ubuntu)\";s:12:\"x-powered-by\";s:21:\"PHP/5.5.9-1ubuntu4.11\";s:10:\"x-pingback\";s:43:\"http://www.powerpresspodcast.com/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Sun, 27 Sep 2015 03:03:34 GMT\";s:4:\"etag\";s:39:\"\"c116da23449f2b32557a1eb011fa5465-gzip\"\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:16:\"content-encoding\";s:4:\"gzip\";s:13:\"cache-control\";s:9:\"max-age=0\";s:7:\"expires\";s:29:\"Wed, 07 Oct 2015 18:16:36 GMT\";s:14:\"content-length\";s:4:\"9806\";s:10:\"connection\";s:5:\"close\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";}s:5:\"build\";s:14:\"20150511173052\";}','no'),(29500,'_transient_jpp_li_e062cb9b1363f5093dbb7531fc473763','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (178.251.228.108)\";s:17:\"seconds_remaining\";i:1111;s:16:\"blocked_attempts\";s:3:\"292\";s:6:\"expire\";i:1444233682;}','no'),(28162,'_transient_timeout_jpp_li_4feab39c758be40a8f0457db761d0898','1444037795','no'),(28163,'_transient_jpp_li_4feab39c758be40a8f0457db761d0898','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (149.202.42.188)\";s:17:\"seconds_remaining\";i:94;s:16:\"blocked_attempts\";s:3:\"260\";s:6:\"expire\";i:1444037795;}','no'),(30089,'_transient_timeout_jpp_li_97138b2839f1b09aee22c0cd8f48bdcf','1444305578','no'),(30238,'_transient_timeout_feed_mod_da8c757f762dcd1ec67339593414ea85','1444373874','no'),(29069,'_transient_timeout_jpp_li_17a38ceb38e1008f2d9fc78f8255b6b5','1444183847','no'),(27191,'_transient_jpp_li_f1cc6a55a740bef4dc54a8209ea8cedb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (93.115.95.207)\";s:17:\"seconds_remaining\";i:269;s:16:\"blocked_attempts\";s:3:\"248\";s:6:\"expire\";i:1443883825;}','no'),(26558,'_transient_timeout_jpp_li_0d6b3a9237f0b00d2495f46d8c21f8fa','1443697540','no'),(26559,'_transient_jpp_li_0d6b3a9237f0b00d2495f46d8c21f8fa','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (209.222.8.196)\";s:17:\"seconds_remaining\";i:206;s:16:\"blocked_attempts\";s:3:\"210\";s:6:\"expire\";i:1443697540;}','no'),(28272,'_transient_timeout_jpp_li_e8f7af9906b16d8e05986fba8514f00a','1444071547','no'),(28273,'_transient_jpp_li_e8f7af9906b16d8e05986fba8514f00a','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (157.55.39.248)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:3:\"266\";s:6:\"expire\";i:1444071547;}','no'),(26563,'_transient_timeout_jpp_li_c41e921a7e1e27e63ead215db52d25b2','1443697373','no'),(26564,'_transient_jpp_li_c41e921a7e1e27e63ead215db52d25b2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (46.28.109.163)\";s:17:\"seconds_remaining\";i:25;s:16:\"blocked_attempts\";s:3:\"211\";s:6:\"expire\";i:1443697373;}','no'),(29352,'_transient_jpp_li_b1c0aad978a69f57822ae2ae446c9429','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (198.50.200.135)\";s:17:\"seconds_remaining\";i:2335;s:16:\"blocked_attempts\";s:3:\"288\";s:6:\"expire\";i:1444215128;}','no'),(29356,'_transient_timeout_jpp_li_5643b491a47d29a76a812aafc40b917a','1444215189','no'),(29373,'_transient_timeout_jpp_li_6209660e75dfedab91f319934412399f','1444216765','no'),(29374,'_transient_jpp_li_6209660e75dfedab91f319934412399f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (35.0.127.52)\";s:17:\"seconds_remaining\";i:2272;s:16:\"blocked_attempts\";s:3:\"290\";s:6:\"expire\";i:1444216765;}','no'),(28313,'_transient_jpp_li_b9f160466eb75cb6a068babd5e423f2f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (93.115.95.204)\";s:17:\"seconds_remaining\";i:442;s:16:\"blocked_attempts\";s:3:\"266\";s:6:\"expire\";i:1444075583;}','no'),(1667,'gourlspeedcoinprivate_key','','yes'),(582,'_transient_timeout_feed_02c1659aca60f6b8e9022f1eb206b54f','1438217177','no'),(583,'_transient_feed_02c1659aca60f6b8e9022f1eb206b54f','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:9:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Highlighted Topics\";s: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:\"http://www.powerpresspodcast.com/category/highlighted/\";s: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:93:\"Select pages that are highlighted to be included in the sidebar of PowerPress Podcast 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jul 2015 15:40:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://wordpress.org/?v=4.2.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:14:\"managingEditor\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"powerpress@rawvoice.com (Blubrry.com Team)\";s: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:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Highlighted Topics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://www.powerpresspodcast.com/wp-content/uploads/powerpress/300x300.png\";s: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:\"http://www.powerpresspodcast.com/category/highlighted/\";s: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:4:{i:0;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"PowerPress Quick Start Guide\";s: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:86:\"http://www.powerpresspodcast.com/2011/02/28/quick-start-guide-with-blubrry-powerpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"http://www.powerpresspodcast.com/2011/02/28/quick-start-guide-with-blubrry-powerpress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Feb 2011 19:59:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Highlighted\";s: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:37:\"http://www.powerpresspodcast.com/?p=7\";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:67:\"Follow these quick and easy steps to setup PowerPress in 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:4:\"dude\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1741:\"<p>Welcome to Blubrry PowerPress! We recommend you follow the getting started steps to both save you time and to guarantee that you’ve properly setup your blog for podcasting.</p>\n<p><strong>1. Configure all of the Settings in PowerPress</strong></p>\n<p>Before you do anything else, go through all of the settings in PowerPress. In particular, it is very important that you upload your iTunes and RSS images before submitting your podcast feeds to directories such as iTunes and Zune marketplace.</p>\n<p><strong>2. Create Your First Podcast Episode</strong></p>\n<p>Sounds simple enough, simply go into WordPress “Posts” section and select “Add New”. When you edit your new blog post, brwose to the bottom of the page where you will fin a new “Podcast Episode” box. Here is where you link your media file to your blog post in order to create a podcast episode (Remember, podcasting is simply an extension to blogging).</p>\n<p>Need help recording or uploading your media? Please visit <a title=\"PodcastFAQ.com\" href=\"http://www.podcastfaq.com\" target=\"_blank\">www.podcastfaq.com</a> for help!</p>\n<p><strong>3. Submit your Podcast Feed to Directories like iTunes and Blubrry.om</strong></p>\n<p>Once you have your podcast settings configured and you have 1 episode in your feed, you can now submit your podcast feed to podcast directories. VERY IMPORTANT: Make sure you submit your “podcast” feed, not your main blog’s feed. The podcast only feed provided in PowerPress is ideal for podcast directories like iTunes because it will only contain your podcast episodes. Feeds with blog posts will not appear and wil only crowd out your podcast episodes.</p>\n<p>You’re all set!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://www.powerpresspodcast.com/2011/02/28/quick-start-guide-with-blubrry-powerpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"What Feed do I Submit to iTunes?\";s: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:76:\"http://www.powerpresspodcast.com/2011/02/28/what-feed-do-i-submit-to-itunes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.powerpresspodcast.com/2011/02/28/what-feed-do-i-submit-to-itunes/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Feb 2011 20:12:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Highlighted\";s: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:38:\"http://www.powerpresspodcast.com/?p=12\";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:106:\"Selecting the right feed is important to maximize your exposure on directories like iTunes and Blubrry.com\";s: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:\"dude\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1709:\"<p>What feed do you submit to iTunes? We get this question a lot! Our answer: <strong>YOUR PODCAST FEED</strong>!</p>\n<p><strong>Why?</strong></p>\n<p><strong></strong>Your podcast feed is just that, it only contains the blog posts that you’ve associated media content with via the PowerPress “Podcast Episode” box. By submitting your podcast only feed to podcast directories like iTunes and <a title=\"Blubrry.com\" href=\"http://www.Blubrry.com\" target=\"_blank\">Blubrry.com</a>, you guarantee that your feed is delivering exactly what those directories are looking for. If you submit your regular blog’s feed, you may end up limiting the number of podcast episodes that are available on iTunes.</p>\n<p><strong>So what’s My Podcast Feed?</strong></p>\n<p>IF you go into PowerPress settings in your WordPress blog, select the tab titled ‘Feeds’. Look for the option titled “Podcast Feeds”. You should see at least one feed listed titled “Podcast Feed”. This is the feed you want to submit to iTunes, Blubrry.com and other podcast directories.</p>\n<p><strong>How Come I Only See 10 Episodes on iTunes?</strong></p>\n<p>If you have more than 10 podcast episodes, and you only see 10 in iTunes, it is because your feed is set to only include 10 items. To change this globally for all of your feeds, go to WordPress Settings > Reading page. In the field titled “Syndication feeds show the most recent”, enter a number larger than the default 10.</p>\n<p>WARNING: We do not recommend settings this any larger than 50. The feed will eventually get excessively large which may lead to issues with your listings on services such as Tunes.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://www.powerpresspodcast.com/2011/02/28/what-feed-do-i-submit-to-itunes/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"8\";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:78:\"\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:7:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Are you Advertiser Ready?\";s: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:\"http://www.powerpresspodcast.com/2011/04/17/are-you-advertiser-ready/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://www.powerpresspodcast.com/2011/04/17/are-you-advertiser-ready/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 17 Apr 2011 01:25:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:7:\"Blubrry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Highlighted\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"PowerPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"advertising\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:10:\"statistics\";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:5:{s:4:\"data\";s:6:\"survey\";s: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:38:\"http://www.powerpresspodcast.com/?p=77\";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:299:\"RawVoice has hired a full time sales manager and we want to make sure that all shows that works with us fully understand what they need to have in place in order to be considered for an advertising campaign. To often shows have great intentions yet when it comes time to put their shows on […]\";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:101:\"http://media.blubrry.com/powerpress_podcast/content.blubrry.com/powerpress_podcast/PPP-2011-04-15.m4v\";s:6:\"length\";s:9:\"177406673\";s:4:\"type\";s:11:\"video/x-m4v\";}}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:\"todd\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1076:\"<p>RawVoice has hired a full time sales manager and we want to make sure that all shows that works with us fully understand what they need to have in place in order to be considered for an <a href=\"http://forum.blubrry.com/index.php/topic,33.0.html\">advertising campaign</a>. To often shows have great intentions yet when it comes time to put their shows on a proposal we are not able due to oversights by the content creator. In this presentation, I walk you through the steps you need to take to be ready to be considered for an advertising campaign.</p>\n<p>I have also posted some supporting articles for content creators hosting their media at the following sites. <a href=\"http://forum.blubrry.com/index.php/topic,2733.0.html\">Mevio</a>, <a href=\"http://forum.blubrry.com/index.php/topic,2731.0.html\">Podbean</a>, <a href=\"http://forum.blubrry.com/index.php/topic,2734.0.html\">Libsyn</a>, <a href=\"http://forum.blubrry.com/index.php/topic,2732.0.html\">Podomatic</a>, <a href=\"http://forum.blubrry.com/index.php/topic,2730.0.html\">Blog Talk Radio.</a></p>\n<p> </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://www.powerpresspodcast.com/2011/04/17/are-you-advertiser-ready/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://www.itunes.com/dtds/podcast-1.0.dtd\";a:5:{s:8:\"subtitle\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"RawVoice has hired a full time sales manager and we want to make sure that all shows that works with us fully understand what they need to have in place in order to be considered for an advertising campaign.\";s: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:980:\"RawVoice has hired a full time sales manager and we want to make sure that all shows that works with us fully understand what they need to have in place in order to be considered for an advertising campaign (http://forum.blubrry.com/index.php/topic,33.0.html). To often shows have great intentions yet when it comes time to put their shows on a proposal we are not able due to oversights by the content creator. In this presentation, I walk you through the steps you need to take to be ready to be considered for an advertising campaign.\n\nI have also posted some supporting articles for content creators hosting their media at the following sites. Mevio (http://forum.blubrry.com/index.php/topic,2733.0.html), Podbean (http://forum.blubrry.com/index.php/topic,2731.0.html), Libsyn (http://forum.blubrry.com/index.php/topic,2734.0.html), Podomatic (http://forum.blubrry.com/index.php/topic,2732.0.html), Blog Talk Radio. (http://forum.blubrry.com/index.php/topic,2730.0.html)\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:6:\"author\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Blubrry.com Team\";s: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:\"explicit\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"no\";s: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:\"duration\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16:48\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://www.rawvoice.com/rawvoiceRssModule/\";a:2:{s:6:\"poster\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:67:\"http://www.powerpresspodcast.com/wp-content/uploads/2011/04/pp4.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"embed\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"<iframe width=\"500\" height=\"336\" src=\"http://www.powerpresspodcast.com/?powerpress_embed=77-podcast&powerpress_player=html5video\" frameborder=\"0\" scrolling=\"no\" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>\";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:66:\"\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:7:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Using The Podcast Channel Feature\";s: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:78:\"http://www.powerpresspodcast.com/2011/05/11/using-the-podcast-channel-feature/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://www.powerpresspodcast.com/2011/05/11/using-the-podcast-channel-feature/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2011 08:17:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"Blubrry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Highlighted\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"PowerPress\";s: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:38:\"http://www.powerpresspodcast.com/?p=90\";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:311:\"One of the most powerful features of the PowerPress Podcast Plugin for WordPress is the ability to make custom podcast channels. I find the channels life savers, as I have 2 other host that have their own shows on my site. Doing 2 separate shows myself in both Audio and Video, requires that I have a […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:101:\"http://media.blubrry.com/powerpress_podcast/content.blubrry.com/powerpress_podcast/PPP-2011-05-10.mp4\";s:6:\"length\";s:8:\"61794453\";s:4:\"type\";s:9:\"video/mp4\";}}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:\"todd\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1575:\"<p>One of the most powerful features of the PowerPress Podcast Plugin for WordPress is the ability to make custom podcast channels. I find the channels life savers, as I have 2 other host that have their own shows on my site.</p>\n<p>Doing 2 separate shows myself in both Audio and Video, requires that I have a total of 4 rss feeds for just my two shows. 1 Audio and 1 Video feed for each show.</p>\n<p>I found that my audience would subscribe to either the Audio or the Video feed of my show, but not both feeds more often than not. So ultimately you are giving your listeners and viewers a choice of content formats.</p>\n<p>But here are the three things you really need to know about creating more podcast channels.</p>\n<p>Example 1: You want to distribute both an mp3 and an mp4 version of your podcast. Use the default podcast channel for your mp3 media and create a custom channel for your mp4 media.</p>\n<p>Example 2: You have a video podcast with multiple file formats. Use the default podcast channel for the main media that you want to appear on your blog (e.g. m4v). Create additional channels for the remaining formats and sizes (e.g. wmv, mov, mpeg).</p>\n<p>Example 3: You create two versions of your podcast, a 20 minute summary and a full 2 hour episode. Use the default channel for your 20 minute summary episodes and create a new custom channel for your full length episodes.</p>\n<p>If you are part of one of our communities keep your eyes open for our newsletter as they all contain critical information that will help grow your show.</p>\n<p>Todd…</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://www.powerpresspodcast.com/2011/05/11/using-the-podcast-channel-feature/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://www.itunes.com/dtds/podcast-1.0.dtd\";a:5:{s:8:\"subtitle\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"One of the most powerful features of the PowerPress Podcast Plugin for Wordpress is the ability to make custom podcast channels. I find the channels life savers, as I have 2 other host that have their own shows on my site. - \";s: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:1515:\"One of the most powerful features of the PowerPress Podcast Plugin for Wordpress is the ability to make custom podcast channels. I find the channels life savers, as I have 2 other host that have their own shows on my site.\n\nDoing 2 separate shows myself in both Audio and Video, requires that I have a total of 4 rss feeds for just my two shows. 1 Audio and 1 Video feed for each show.\n\nI found that my audience would subscribe to either the Audio or the Video feed of my show, but not both feeds more often than not. So ultimately you are giving your listeners and viewers a choice of content formats.\n\nBut here are the three things you really need to know about creating more podcast channels.\n\nExample 1: You want to distribute both an mp3 and an mp4 version of your podcast. Use the default podcast channel for your mp3 media and create a custom channel for your mp4 media.\n\nExample 2: You have a video podcast with multiple file formats. Use the default podcast channel for the main media that you want to appear on your blog (e.g. m4v). Create additional channels for the remaining formats and sizes (e.g. wmv, mov, mpeg).\n\nExample 3: You create two versions of your podcast, a 20 minute summary and a full 2 hour episode. Use the default channel for your 20 minute summary episodes and create a new custom channel for your full length episodes.\n\nIf you are part of one of our communities keep your eyes open for our newsletter as they all contain critical information that will help grow your show.\n\nTodd...\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Blubrry.com Team\";s: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:\"explicit\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"no\";s: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:\"duration\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18:26\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://www.rawvoice.com/rawvoiceRssModule/\";a:1:{s:5:\"embed\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"<iframe width=\"500\" height=\"336\" src=\"http://www.powerpresspodcast.com/?powerpress_embed=90-podcast&powerpress_player=html5video\" frameborder=\"0\" scrolling=\"no\" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>\";s: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:69:\"http://www.powerpresspodcast.com/category/highlighted/feed/?order=ASC\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s: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:42:\"http://www.itunes.com/dtds/podcast-1.0.dtd\";a:7:{s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:268:\"The team at Blubrry.com share with you all the tips and tricks of using PowerPress and getting the most out of the services at Blubrry.com. Find out how to fine tune your podcast and get more exposure through Blubrry.com and the PowerPress WordPress podcasting 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:6:\"author\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Blubrry.com Team\";s: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:\"explicit\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"no\";s: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:\"image\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"href\";s:74:\"http://www.powerpresspodcast.com/wp-content/uploads/powerpress/600x600.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"owner\";a:1:{i:0;a:6:{s:4:\"data\";s:8:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:42:\"http://www.itunes.com/dtds/podcast-1.0.dtd\";a:2:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Blubrry.com Team\";s: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:\"email\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"powerpress@rawvoice.com\";s: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:\"subtitle\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Learn how to optimize your podcast with Blubrry.com and the PowerPress plugin 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:8:\"category\";a:2:{i:0;a:6:{s:4:\"data\";s:8:\"\n \n \n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"text\";s:10:\"Technology\";}}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:42:\"http://www.itunes.com/dtds/podcast-1.0.dtd\";a:1:{s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"text\";s:15:\"Software How-To\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"text\";s:10:\"Podcasting\";}}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:5:\"\n \n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"text\";s:9:\"Education\";}}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:42:\"http://www.itunes.com/dtds/podcast-1.0.dtd\";a:1:{s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"text\";s:8:\"Training\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://www.rawvoice.com/rawvoiceRssModule/\";a:3:{s:6:\"rating\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"TV-G\";s: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:\"location\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Las Vegas, Nevada\";s: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:\"frequency\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Weekly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:14:{s:4:\"date\";s:29:\"Wed, 29 Jul 2015 12:52:43 GMT\";s:6:\"server\";s:21:\"Apache/2.4.7 (Ubuntu)\";s:12:\"x-powered-by\";s:20:\"PHP/5.5.9-1ubuntu4.9\";s:10:\"x-pingback\";s:43:\"http://www.powerpresspodcast.com/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 23 Jul 2015 15:40:07 GMT\";s:4:\"etag\";s:39:\"\"3409dbe53f327c326027e7b87de700e0-gzip\"\";s:12:\"x-robots-tag\";s:14:\"noindex,follow\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:16:\"content-encoding\";s:4:\"gzip\";s:13:\"cache-control\";s:13:\"max-age=86400\";s:7:\"expires\";s:29:\"Thu, 30 Jul 2015 12:52:43 GMT\";s:14:\"content-length\";s:4:\"4485\";s:10:\"connection\";s:5:\"close\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";}s:5:\"build\";s:14:\"20150511173052\";}','no'),(584,'_transient_timeout_feed_mod_02c1659aca60f6b8e9022f1eb206b54f','1438217177','no'),(585,'_transient_feed_mod_02c1659aca60f6b8e9022f1eb206b54f','1438173977','no'),(6009,'soundcloud_master_installed_version','4.4.2.0','yes'),(6010,'soundcloud_master_name','Soundcloud Master','yes'),(29573,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1444284522','no'),(29574,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2015/09/wordpress-4-3-1/\'>WordPress 4.3.1 Security and Maintenance Release</a> <span class=\"rss-date\">September 15, 2015</span><div class=\"rssSummary\">WordPress 4.3.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation. WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/10/accelerated-mobile-pages-wordpress/\'>Matt: Accelerated Mobile Pages & WordPress</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/10up-continues-to-make-major-investments-in-wordpress\'>WPTavern: 10up Continues to Make Major Investments in WordPress</a></li><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/10/scratch-sniff-whiskey/\'>Matt: Scratch & Sniff Whiskey</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/ml-slider/\' class=\'dashboard-news-plugin-link\'>Meta Slider</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=ml-slider&_wpnonce=24747f6b48&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Meta Slider\'>Install</a>)</span></li></ul></div>','no'),(1665,'gourldashprivate_key','','yes'),(1666,'gourlspeedcoinpublic_key','','yes'),(710,'GooglePublisherPlugin_Version','1.1.1','yes'),(711,'GooglePublisherPlugin','a:5:{s:5:\"token\";a:0:{}s:6:\"siteId\";s:36:\"53b6359c-bcf3-4456-a9b7-9043ee26db2a\";s:4:\"tags\";a:1:{i:0;a:1:{s:4:\"code\";s:17:\"<script></script>\";}}s:12:\"notification\";s:4:\"none\";s:13:\"updateSupport\";s:4:\"true\";}','yes'),(712,'cashie_partner','WordPress','yes'),(713,'secure_auth_key',')b$hIz^62?_zPEi)&4n=SIbWfe0i(&$WygO?DtT.FI}]g>PpGv(s4<Po]uZP[i+1','yes'),(714,'secure_auth_salt','|$Qz+Sic9T6Mq4RS!dY<>6UT?,quW(XiOFQ3RXHrU@7bU5{:$7ZFv=8$Y(f0K4,m','yes'),(1226,'cart_payment_currency','USD','yes'),(1227,'cart_currency_symbol','$','yes'),(1228,'cart_base_shipping_cost','0','yes'),(1229,'cart_free_shipping_threshold','','yes'),(820,'wp_logo_slider_settings','a:10:{s:10:\"custom_css\";s:35:\"You can write your custom CSS here.\";s:5:\"arrow\";i:0;s:8:\"bgcolour\";s:7:\"#FFFFFF\";s:12:\"slider_width\";i:450;s:13:\"slider_height\";i:198;s:7:\"num_img\";i:2;s:10:\"auto_slide\";i:1;s:15:\"auto_slide_time\";i:3;s:10:\"new_window\";s:2:\"on\";s:13:\"select_slider\";s:5:\"slide\";}','yes'),(941,'widget_metaslider_widget','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(919,'addtoany_options','a:32:{s:8:\"position\";s:6:\"bottom\";s:30:\"display_in_posts_on_front_page\";s:1:\"1\";s:33:\"display_in_posts_on_archive_pages\";s:1:\"1\";s:19:\"display_in_excerpts\";s:1:\"1\";s:16:\"display_in_posts\";s:1:\"1\";s:16:\"display_in_pages\";s:1:\"1\";s:15:\"display_in_feed\";s:1:\"1\";s:10:\"show_title\";s:1:\"1\";s:7:\"onclick\";s:2:\"-1\";s:9:\"icon_size\";s:2:\"32\";s:6:\"button\";s:10:\"A2A_SVG_32\";s:13:\"button_custom\";s:0:\"\";s:6:\"header\";s:0:\"\";s:23:\"additional_js_variables\";s:197:\"a2a_config.color_main = \\\"000000\\\";a2a_config.color_border = \\\"51f604\\\";a2a_config.color_link_text = \\\"ffffff\\\";a2a_config.color_link_text_hover = \\\"eb6ad7\\\";a2a_config.color_arrow_hover = \\\"fff\\\";\";s:12:\"custom_icons\";s:2:\"-1\";s:16:\"custom_icons_url\";s:1:\"/\";s:17:\"custom_icons_type\";s:3:\"png\";s:10:\"inline_css\";s:1:\"1\";s:5:\"cache\";s:2:\"-1\";s:20:\"display_in_cpt_forum\";s:1:\"1\";s:20:\"display_in_cpt_topic\";s:1:\"1\";s:20:\"display_in_cpt_reply\";s:1:\"1\";s:24:\"display_in_cpt_ml-slider\";s:1:\"1\";s:11:\"button_text\";s:5:\"Share\";s:24:\"special_facebook_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:23:\"special_twitter_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:15:\"active_services\";a:3:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:11:\"google_plus\";}s:29:\"special_facebook_like_options\";a:1:{s:4:\"verb\";s:4:\"like\";}s:29:\"special_twitter_tweet_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:30:\"special_google_plusone_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:33:\"special_google_plus_share_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:29:\"special_pinterest_pin_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}}','yes'),(1108,'custom_banners_registered_key','','yes'),(987,'aal_displayc','[\\\"post\\\",\\\"page\\\"]','yes'),(983,'aal_cssclass','','yes'),(984,'aal_langsupport','false','yes'),(985,'aal_display','','yes'),(986,'aal_samekeyword','1','yes'),(1103,'custom_banners_never_show_cta_buttons','1','yes'),(1104,'custom_banners_default_width','600','yes'),(1026,'easy_media_opt','a:84:{s:19:\"easymedia_deff_init\";s:1:\"1\";s:17:\"easymedia_frm_col\";s:7:\"#e5e7e8\";s:17:\"easymedia_ttl_col\";s:7:\"#C7C7C7\";s:22:\"easymedia_ttl_back_col\";s:4:\"#000\";s:18:\"easymedia_shdw_col\";s:7:\"#4A4A4A\";s:18:\"easymedia_icon_col\";s:7:\"#474747\";s:19:\"easymedia_box_style\";s:5:\"Light\";s:24:\"easymedia_lightbox_style\";s:24:\"EMG Lightbox ( Default )\";s:21:\"easymedia_overlay_col\";s:7:\"#F7F0D7\";s:19:\"easymedia_thumb_col\";s:7:\"#000000\";s:18:\"easymedia_pbar_col\";s:7:\"#2187e7\";s:21:\"easymedia_hover_style\";s:4:\"Dark\";s:18:\"easymedia_hovstyle\";s:20:\"Style 01 ( Default )\";s:18:\"easymedia_mag_icon\";s:6:\"Icon-0\";s:21:\"easymedia_plugin_core\";s:14:\"core-1.4.5-min\";s:21:\"easymedia_hover_opcty\";s:2:\"40\";s:23:\"easymedia_overlay_opcty\";s:2:\"80\";s:28:\"easymedia_thumb_border_opcty\";s:3:\"100\";s:20:\"easymedia_slide_intv\";s:1:\"5\";s:24:\"easymedia_img_size_limit\";s:3:\"940\";s:21:\"easymedia_filterstyle\";s:12:\"Default-Grey\";s:17:\"easymedia_columns\";s:1:\"3\";s:20:\"easymedia_margin_box\";s:2:\"12\";s:19:\"easymedia_audio_vol\";s:3:\"100\";s:26:\"easymedia_disen_audio_loop\";s:1:\"1\";s:20:\"easymedia_frm_border\";s:1:\"5\";s:19:\"easymedia_cur_style\";s:7:\"Pointer\";s:20:\"easymedia_alignstyle\";s:6:\"Center\";s:20:\"easymedia_pag_effect\";s:7:\"flipInX\";s:25:\"easymedia_carousel_effect\";s:14:\"easeInOutCubic\";s:19:\"easymedia_badge_pos\";s:9:\"Top Right\";s:24:\"easymedia_disen_showcntr\";s:1:\"1\";s:29:\"easymedia_disen_showcntrthumb\";s:1:\"1\";s:19:\"easymedia_badge_col\";s:4:\"Blue\";s:19:\"easymedia_thumbcrop\";s:6:\"Center\";s:18:\"easymedia_thumbzcs\";s:62:\"Crop and resize to best fit the dimensions (default behaviour)\";s:20:\"easymedia_filter_pos\";s:6:\"Center\";s:19:\"easymedia_pag_style\";s:5:\"Light\";s:18:\"easymedia_disen_fb\";s:1:\"1\";s:19:\"easymedia_disen_twt\";s:1:\"1\";s:19:\"easymedia_disen_pin\";s:1:\"1\";s:18:\"easymedia_disen_gp\";s:1:\"1\";s:19:\"easymedia_disen_eml\";s:1:\"1\";s:24:\"easymedia_disen_dlbutton\";s:1:\"0\";s:21:\"easymedia_disen_upchk\";s:1:\"1\";s:24:\"easymedia_disen_lazyload\";s:1:\"1\";s:22:\"easymedia_disen_rclick\";s:1:\"1\";s:17:\"easymedia_cls_pos\";s:6:\"Bottom\";s:17:\"easymedia_sos_pos\";s:6:\"Bottom\";s:23:\"easymedia_disen_dasnews\";s:1:\"1\";s:26:\"easymedia_disen_preload_ef\";s:1:\"1\";s:22:\"easymedia_disen_galnav\";s:1:\"1\";s:18:\"easymedia_brdr_rds\";s:1:\"3\";s:19:\"easymedia_disen_bor\";s:1:\"1\";s:19:\"easymedia_disen_sdw\";s:1:\"1\";s:23:\"easymedia_style_pattern\";s:14:\"pattern-01.png\";s:21:\"easymedia_disen_ticon\";s:1:\"1\";s:22:\"easymedia_disen_icocol\";s:1:\"1\";s:22:\"easymedia_disen_databk\";s:1:\"1\";s:24:\"easymedia_disen_autoupdt\";s:1:\"1\";s:21:\"easymedia_ajax_con_id\";s:8:\"#content\";s:20:\"easymedia_disen_ajax\";s:0:\"\";s:25:\"easymedia_disen_style_man\";s:1:\"1\";s:24:\"easymedia_disen_hovstyle\";s:1:\"1\";s:20:\"easymedia_disen_plug\";s:1:\"1\";s:22:\"easymedia_disen_autopl\";s:1:\"1\";s:23:\"easymedia_disen_autoplv\";s:1:\"1\";s:25:\"easymedia_disen_admnotify\";s:1:\"1\";s:24:\"easymedia_disen_galsshow\";s:1:\"1\";s:22:\"easymedia_text_showall\";s:8:\"Show All\";s:26:\"easymedia_text_backtoalbum\";s:13:\"BACK to ALBUM\";s:19:\"easymedia_countsing\";s:5:\"image\";s:21:\"easymedia_countplural\";s:6:\"images\";s:20:\"easymedia_title_font\";s:7:\"Default\";s:23:\"easymedia_subtitle_font\";s:7:\"Default\";s:19:\"easymedia_desc_font\";s:7:\"Default\";s:25:\"easymedia_title_font_size\";s:4:\"27px\";s:28:\"easymedia_subtitle_font_size\";s:4:\"19px\";s:24:\"easymedia_desc_font_size\";s:4:\"12px\";s:26:\"easymedia_title_font_color\";s:4:\"#333\";s:29:\"easymedia_subtitle_font_color\";s:4:\"#333\";s:25:\"easymedia_desc_font_color\";s:4:\"#777\";s:18:\"easymedia_frm_size\";a:2:{s:5:\"width\";s:3:\"160\";s:6:\"height\";s:3:\"160\";}s:18:\"easymedia_vid_size\";a:2:{s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"400\";}}','yes'),(993,'gallery-bank-updation-check-url','http://tech-banker.com/wp-admin/admin-ajax.php','yes'),(994,'gallery-bank-pro-edition','3.1','yes'),(995,'gallery-bank-automatic_update','1','yes'),(997,'gallery-bank-demo','1','yes'),(1008,'_transient_timeout_468cf10cb3659c34456d08617685e021','1443995070','no'),(1009,'_transient_468cf10cb3659c34456d08617685e021','a:5:{s:7:\"headers\";a:7:{s:4:\"date\";s:29:\"Wed, 05 Aug 2015 21:44:30 GMT\";s:6:\"server\";s:6:\"Apache\";s:13:\"last-modified\";s:29:\"Thu, 16 Jul 2015 08:00:25 GMT\";s:13:\"accept-ranges\";s:5:\"bytes\";s:14:\"content-length\";s:3:\"789\";s:10:\"connection\";s:5:\"close\";s:12:\"content-type\";s:16:\"application/json\";}s:4:\"body\";s:789:\"{\n \"tier_5\":{\n \"manage\":{\n \"message_text\":\"Get more lenses!\"\n },\n \"edit\":{\n \"message_text\":\"Get more sources!\"\n },\n \"lenses\":{\n \"message_text\":\"Copy and edit lenses!\"\n }\n },\n \"tier_10\":{\n \"manage\":{\n \"message_text\":\"Get more custom slides\"\n },\n \"edit\":{\n \"message_text\":\"Get the Classic lens!\"\n },\n \"lenses\":{\n \"message_text\":\"Copy and edit lenses!\"\n }\n },\n \"tier_20\":{\n \"manage\":{\n \"message_text\":\"Get more custom slides\"\n },\n \"edit\":{\n \"message_text\":\"Use SlideDeck on more sites\"\n },\n \"lenses\":{\n \"message_text\":\"Copy and edit lenses!\"\n }\n }\n}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}','no'),(1010,'slidedeck2_global_options','a:2:{s:21:\"anonymous_stats_optin\";b:0;s:25:\"anonymous_stats_has_opted\";b:1;}','yes'),(1138,'_site_transient_browser_6c87615462301d709781c5732ebdb395','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"44.0.2403.130\";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'),(1011,'slidedeck-cache-buster','2','yes'),(1012,'_transient_timeout_8ebe511af727fe48186c7e3ae3536246','1438919116','no'),(1013,'_transient_8ebe511af727fe48186c7e3ae3536246','a:5:{s:7:\"headers\";a:12:{s:4:\"vary\";a:2:{i:0;s:6:\"Origin\";i:1;s:8:\"X-Origin\";}s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"date\";s:29:\"Wed, 05 Aug 2015 21:45:16 GMT\";s:7:\"expires\";s:29:\"Wed, 05 Aug 2015 21:45:16 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:14:\"content-length\";s:3:\"132\";s:6:\"server\";s:3:\"GSE\";s:18:\"alternate-protocol\";s:12:\"443:quic,p=1\";}s:4:\"body\";s:176:\"{\n \"error\": {\n \"errors\": [\n {\n \"domain\": \"usageLimits\",\n \"reason\": \"keyInvalid\",\n \"message\": \"Bad Request\"\n }\n ],\n \"code\": 400,\n \"message\": \"Bad Request\"\n }\n}\n\";s:8:\"response\";a:2:{s:4:\"code\";i:400;s:7:\"message\";s:11:\"Bad Request\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}','no'),(942,'widget_powerpress_subscribe','a:3:{i:1;a:0:{}i:2;a:5:{s:5:\"title\";s:20:\"Subscribe to Podcast\";s:14:\"subscribe_type\";s:0:\"\";s:19:\"subscribe_post_type\";s:0:\"\";s:19:\"subscribe_feed_slug\";s:34:\"http://thebeloitpod.libsyn.com/rss\";s:21:\"subscribe_category_id\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(1056,'widget_adwidget_imagewidget','a:2:{i:2;a:5:{s:6:\"w_link\";s:34:\"http://thebeloitpod.com/wordpress1\";s:5:\"w_img\";s:0:\"\";s:8:\"w_resize\";N;s:5:\"w_new\";N;s:5:\"w_adv\";s:14:\"New Advertiser\";}s:12:\"_multiwidget\";i:1;}','yes'),(1028,'_transient_timeout_emg_whats_new','1438820832','no'),(1029,'_transient_emg_whats_new','<div style=\"\" class=\"ecf-container-cnt\">\n <h3 class=\"customh3\">Earn EXTRA MONEY!</h3>\n <div class=\"feature-section\">\n <div class=\"content-wrap\"><p><img class=\"alignleft size-full wp-image-47\" src=\"http://cdn.ghozylab.netdna-cdn.com/images/feeds/earn-dollar.png\" alt=\"earn-dollar\" width=\"150\" height=\"150\" />The GhozyLab Partner Program is the perfect opportunity for existing customers to earn credit towards their account by simply referring friends, family or others to GhozyLab. This quickly adds up to hundreds or even thousands of dollars!</p>\n<p>Once you sign up to the GhozyLab Partner Program, you will receive a special username and password to login to the secure affiliate area of our Web site. This area will provide you with a custom referral link that you can provide to friends, family and Web site visitors.</p>\n<p>To get started, simply register for the partner program. You may choose to add a banner or button to your Web site that directs visitors to your custom affiliate link, or you may choose to spread the link to friends and family via email. Either way, every validated sale generated from your link will result in a payout directly to you. GhozyLab will of course completely manage the client – all you have to do is send them to us!</p>\n<p> </p>\n<p><a class=\"ecf-button-blue\" href=\"https://secure.ghozylab.com/affiliate-area/\" target=\"_blank\">JOIN GHOZYLAB AFFILIATE PROGRAM</a></p>\n</div>\n </div>\n <p class=\"date-news\">Published on 2015-06-29</p>\n </div><style>.content-wrap img{ padding: 0 10px 10px 0; } .ecf-button-blue {\n background: #3498db;\n background-image: -webkit-linear-gradient(top, #3498db, #2b8ecc);\n background-image: -moz-linear-gradient(top, #3498db, #2b8ecc);\n background-image: -ms-linear-gradient(top, #3498db, #2b8ecc);\n background-image: -o-linear-gradient(top, #3498db, #2b8ecc);\n background-image: linear-gradient(to bottom, #3498db, #2b8ecc);\n -webkit-border-radius: 2;\n -moz-border-radius: 2;\n border-radius: 2px;\n font-family: Arial;\n color: #ffffff;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n}\n\n.ecf-button-blue:hover {\n background: #3aa4e6;\n background-image: -webkit-linear-gradient(top, #3aa4e6, #2c8ecf);\n background-image: -moz-linear-gradient(top, #3aa4e6, #2c8ecf);\n background-image: -ms-linear-gradient(top, #3aa4e6, #2c8ecf);\n background-image: -o-linear-gradient(top, #3aa4e6, #2c8ecf);\n background-image: linear-gradient(to bottom, #3aa4e6, #2c8ecf);\n text-decoration: none;\ncolor: #ffffff !important;\n}\n.date-news {font-size: 12px !important; font-style: italic; color: #969595 !important;margin-bottom: 30px;padding-bottom: 7px;border-bottom: 1px dashed #CCC;}\n</style>','no'),(1105,'custom_banners_default_height','200','yes'),(1106,'custom_banners_registered_name','','yes'),(1107,'custom_banners_registered_url','','yes'),(1046,'widget_sponsors-slideshow','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:11:{s:6:\"source\";s:5:\"links\";s:8:\"category\";s:10:\"category_1\";s:13:\"post_url_meta\";s:0:\"\";s:13:\"post_img_meta\";s:0:\"\";s:5:\"title\";s:16:\"LInks & Sponsors\";s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"320\";s:7:\"timeout\";s:1:\"3\";s:5:\"speed\";s:1:\"3\";s:4:\"fade\";s:6:\"slideX\";s:5:\"order\";s:1:\"1\";}}','yes'),(1048,'wd_bwg_version','1.2.49','no'),(1049,'wd_bwg_theme_version','1.0.0','no'),(1054,'simple_page_sidebars_version','1.2.0','yes'),(1055,'widget_adwidget_htmlwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1102,'custom_banners_never_show_captions','1','yes'),(1002,'slidedeck_cohort','a:4:{s:4:\"name\";s:7:\"ecf8915\";s:9:\"variation\";s:0:\"\";s:4:\"year\";s:4:\"2015\";s:5:\"month\";s:2:\"08\";}','yes'),(1003,'slidedeck_partner','','yes'),(1004,'slidedeck_version','2.3.13','yes'),(1005,'slidedeck_license','LITE','yes'),(1006,'slidedeck2_installed','1438811055','yes'),(1007,'slidedeck2_lite_installed','1438811055','yes'),(1208,'AmazonLinkOptions','a:35:{s:7:\"version\";i:10;s:9:\"aws_valid\";i:0;s:13:\"plugin_extras\";s:0:\"\";s:11:\"do_channels\";i:0;s:11:\"image_class\";s:14:\"wishlist_image\";s:17:\"wishlist_template\";s:11:\"add to cart\";s:14:\"wishlist_items\";s:1:\"5\";s:13:\"wishlist_type\";s:7:\"Similar\";s:4:\"text\";s:6:\"Amazon\";s:10:\"default_cc\";s:2:\"us\";s:8:\"localise\";s:0:\"\";s:10:\"plugin_ids\";s:0:\"\";s:11:\"search_text\";s:18:\"%ARTIST% | %TITLE%\";s:13:\"search_text_s\";s:22:\"%ARTIST%S# | %TITLE%S#\";s:8:\"multi_cc\";s:1:\"2\";s:4:\"live\";s:0:\"\";s:9:\"cache_age\";s:2:\"48\";s:12:\"sc_cache_age\";s:1:\"1\";s:14:\"template_asins\";s:87:\"0893817449,0500410607,050054199X,0500286426,0893818755,050054333X,0500543178,0945506562\";s:7:\"pub_key\";s:0:\"\";s:8:\"priv_key\";s:0:\"\";s:13:\"cache_enabled\";s:0:\"\";s:10:\"new_window\";s:1:\"1\";s:10:\"link_title\";s:0:\"\";s:13:\"media_library\";s:0:\"\";s:13:\"form_template\";s:9:\"thumbnail\";s:12:\"form_channel\";s:1:\" \";s:12:\"form_s_index\";s:3:\"All\";s:11:\"search_link\";s:0:\"\";s:10:\"home_links\";s:0:\"\";s:9:\"condition\";s:0:\"\";s:8:\"prefetch\";s:0:\"\";s:8:\"user_ids\";s:0:\"\";s:5:\"debug\";s:0:\"\";s:14:\"full_uninstall\";s:0:\"\";}','yes'),(1209,'AmazonLinkChannels','a:1:{s:7:\"default\";a:3:{s:4:\"Name\";s:7:\"Default\";s:11:\"Description\";s:22:\"Default Affiliate Tags\";s:4:\"Rule\";a:0:{}}}','yes'),(1210,'AmazonLinkTemplates','a:14:{s:11:\"add to cart\";a:7:{s:4:\"Name\";s:11:\"Add To Cart\";s:11:\"Description\";s:22:\"Buy From Amazon Button\";s:7:\"Content\";s:672:\"\n<form method="GET" action="http://www.amazon.%TLD%/gp/aws/cart/add.html">\n <input type="hidden" name="AssociateTag" value="%TAG%"/>\n <input type="hidden" name="SubscriptionId" value="%PUB_KEY%"/>\n <input type="hidden" name="ASIN.1" value="%ASIN%"/>\n <input type="hidden" name="Quantity.1" value="1"/>\n <input type="image" name="add" value="Buy from Amazon.%TLD%" border="0" alt="Buy from Amazon.%TLD%" src="%BUY_BUTTON%">\n</form>\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:18:\"Remove line breaks\";s:4:\"Type\";s:7:\"Product\";s:11:\"Preview_Off\";i:0;}s:12:\"add to cart1\";a:7:{s:4:\"Name\";s:12:\"add to cart1\";s:11:\"Description\";s:22:\"Buy From Amazon Button\";s:7:\"Content\";s:672:\"\n<form method="GET" action="http://www.amazon.%TLD%/gp/aws/cart/add.html">\n <input type="hidden" name="AssociateTag" value="%TAG%"/>\n <input type="hidden" name="SubscriptionId" value="%PUB_KEY%"/>\n <input type="hidden" name="ASIN.1" value="%ASIN%"/>\n <input type="hidden" name="Quantity.1" value="1"/>\n <input type="image" name="add" value="Buy from Amazon.%TLD%" border="0" alt="Buy from Amazon.%TLD%" src="%BUY_BUTTON%">\n</form>\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:18:\"Remove line breaks\";s:4:\"Type\";s:7:\"Product\";s:11:\"Preview_Off\";i:0;}s:12:\"add to cart2\";a:7:{s:4:\"Name\";s:12:\"add to cart2\";s:11:\"Description\";s:22:\"Buy From Amazon Button\";s:7:\"Content\";s:672:\"\n<form method="GET" action="http://www.amazon.%TLD%/gp/aws/cart/add.html">\n <input type="hidden" name="AssociateTag" value="%TAG%"/>\n <input type="hidden" name="SubscriptionId" value="%PUB_KEY%"/>\n <input type="hidden" name="ASIN.1" value="%ASIN%"/>\n <input type="hidden" name="Quantity.1" value="1"/>\n <input type="image" name="add" value="Buy from Amazon.%TLD%" border="0" alt="Buy from Amazon.%TLD%" src="%BUY_BUTTON%">\n</form>\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:18:\"Remove line breaks\";s:4:\"Type\";s:7:\"Product\";s:11:\"Preview_Off\";i:0;}s:11:\"banner easy\";a:7:{s:4:\"Name\";s:11:\"Banner Easy\";s:11:\"Description\";s:20:\"Easy Banner (468x60)\";s:7:\"Content\";s:375:\"\n<iframe src="http://rcm-%REGION%.amazon-adsystem.com/e/cm?t=%TAG%&o=%MPLACE_ID%&p=48&l=ur1&category=amazonhomepage&f=ifr&linkID=TUCSMEO7D7NEDG5M" width="728" height="90" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"></iframe>\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:50:\"Upgrade for Amazon Ad Migration (1st August 2015).\";s:4:\"Type\";s:7:\"No ASIN\";s:11:\"Preview_Off\";i:0;}s:8:\"carousel\";a:7:{s:4:\"Name\";s:8:\"Carousel\";s:11:\"Description\";s:40:\"Amazon Carousel Widget (limited locales)\";s:7:\"Content\";s:416:\"\n<script type=\'text/javascript\'>\nvar amzn_wdgt={widget:\'Carousel\'};\namzn_wdgt.tag=\'%TAG%\';\namzn_wdgt.widgetType=\'ASINList\';\namzn_wdgt.ASIN=\'%ASINs%\';\namzn_wdgt.title=\'%TEXT%\';\namzn_wdgt.marketPlace=\'%MPLACE%\';\namzn_wdgt.width=\'600\';\namzn_wdgt.height=\'200\';\n</script>\n<script type=\'text/javascript\' src=\'http://wms-%REGION%.amazon-adsystem.com/20070822/%MPLACE%/js/swfobject_1_5.js\'>\n</script>\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:50:\"Upgrade for Amazon Ad Migration (1st August 2015).\";s:4:\"Type\";s:5:\"Multi\";s:11:\"Preview_Off\";i:0;}s:12:\"iframe image\";a:7:{s:4:\"Name\";s:12:\"Iframe Image\";s:11:\"Description\";s:26:\"Standard Amazon Image Link\";s:7:\"Content\";s:449:\"\n<iframe src="http://rcm-%REGION%.amazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=%TAG%&o=%MPLACE_ID%&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=%ASIN%&MsrketPlace=%MPLACE%" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>\n\";s:4:\"Type\";s:7:\"Product\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:50:\"Upgrade for Amazon Ad Migration (1st August 2015).\";s:11:\"Preview_Off\";i:0;}s:13:\"iframe image2\";a:7:{s:4:\"Name\";s:12:\"Iframe Image\";s:11:\"Description\";s:26:\"Standard Amazon Image Link\";s:7:\"Content\";s:569:\"\n<iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="http://ws-%REGION%.amazon-adsystem.com/widgets/q?region=%MPLACE%&ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=%MPLACE%&source=ss&ref=ss_til&ad_type=product_link&tracking_id=%TAG%&marketplace=amazon&placement=%ASIN%&asins=%ASIN%&linkId=DGJQFSEETVP4VISP&show_border=true&link_opens_in_new_window=true">\n</iframe>\";s:4:\"Type\";s:7:\"Product\";s:7:\"Version\";s:1:\"1\";s:6:\"Notice\";s:23:\"New Style iFrame Image.\";s:11:\"Preview_Off\";i:0;}s:5:\"image\";a:7:{s:4:\"Name\";s:5:\"Image\";s:11:\"Description\";s:20:\"Localised Image Link\";s:7:\"Content\";s:460:\"\n<div class="al_found%FOUND%">\n %LINK_OPEN%<img alt="%TITLE%" title="%TITLE%" src="%IMAGE%" class="%IMAGE_CLASS%">%LINK_CLOSE%\n<img src="http://www.assoc-amazon.%TLD%/e/ir?t=%TAG%&l=as2&o=%MPLACE_ID%&a=%ASIN%" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />\n</div>\n\";s:4:\"Type\";s:7:\"Product\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:23:\"Add impression tracking\";s:11:\"Preview_Off\";i:0;}s:9:\"mp3 clips\";a:7:{s:4:\"Name\";s:9:\"MP3 Clips\";s:11:\"Description\";s:41:\"Amazon MP3 Clips Widget (limited locales)\";s:7:\"Content\";s:448:\"\n<script type=\'text/javascript\'>\nvar amzn_wdgt={widget:\'MP3Clips\'};\namzn_wdgt.tag=\'%TAG%\';\namzn_wdgt.widgetType=\'ASINList\';\namzn_wdgt.ASIN=\'%ASINS%\';\namzn_wdgt.title=\'%TEXT%\';\namzn_wdgt.width=\'250\';\namzn_wdgt.height=\'250\';\namzn_wdgt.shuffleTracks=\'True\';\namzn_wdgt.marketPlace=\'%MPLACE%\';\n</script>\n<script type=\'text/javascript\' src=\'http://wms-%REGION%.amazon-adsystem.com/20070822/%MPLACE%/js/swfobject_1_5.js\'>\n</script>\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:50:\"Upgrade for Amazon Ad Migration (1st August 2015).\";s:4:\"Type\";s:5:\"Multi\";s:11:\"Preview_Off\";i:0;}s:13:\"multinational\";a:7:{s:4:\"Name\";s:13:\"Multinational\";s:11:\"Description\";s:30:\"Example Multinational Template\";s:7:\"Content\";s:1492:\"\n<div class="amazon_prod">\n <div class="amazon_img_container">\n %LINK_OPEN%<img class="%IMAGE_CLASS%" src="%THUMB%">%LINK_CLOSE%\n </div>\n <div class="amazon_text_container">\n <p>%LINK_OPEN%%TITLE%%LINK_CLOSE%</p>\n <div class="amazon_details">\n <p>by %ARTIST% [%MANUFACTURER%]<br />\n <b>Price: <span class="amazon_price">\n <span class="al_found%FOUND%uk#">%LINK_OPEN%uk# <img style="height:10px" src="%FLAG%uk#"> %PRICE%uk#%LINK_CLOSE%</span>\n <span class="al_found%FOUND%fr#">%LINK_OPEN%FR# <img style="height:10px" src="%FLAG%fr#"> %PRICE%FR#%LINK_CLOSE%</span>\n <span class="al_found%FOUND%de#">%LINK_OPEN%de# <img style="height:10px" src="%FLAG%de#"> %PRICE%DE#%LINK_CLOSE%</span>\n <span class="al_found%FOUND%es#">%LINK_OPEN%es# <img style="height:10px" src="%FLAG%es#"> %PRICE%es#%LINK_CLOSE%</span>\n </b>\n </p>\n </div>\n </div>\n</div>\n<img src="http://www.assoc-amazon.%TLD%/e/ir?t=%TAG%&l=as2&o=%MPLACE_ID%&a=%ASIN%" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />\n\";s:4:\"Type\";s:7:\"Product\";s:7:\"Version\";s:1:\"3\";s:6:\"Notice\";s:26:\"Use style to modify height\";s:11:\"Preview_Off\";i:0;}s:13:\"my favourites\";a:7:{s:4:\"Name\";s:13:\"My Favourites\";s:11:\"Description\";s:45:\"Amazon My Favourites Widget (limited locales)\";s:7:\"Content\";s:579:\"\n<script type=\'text/javascript\'>\nvar amzn_wdgt={widget:\'MyFavorites\'};\namzn_wdgt.tag=\'%TAG%\';\namzn_wdgt.columns=\'1\';\namzn_wdgt.rows=\'3\';\namzn_wdgt.title=\'%TEXT%\';\namzn_wdgt.width=\'250\';\namzn_wdgt.ASIN=\'%ASINS%\';\namzn_wdgt.showImage=\'True\';\namzn_wdgt.showPrice=\'True\';\namzn_wdgt.showRating=\'True\';\namzn_wdgt.design=\'5\';\namzn_wdgt.colorTheme=\'White\';\namzn_wdgt.headerTextColor=\'#FFFFFF\';\namzn_wdgt.marketPlace=\'%MPLACE%\';\n</script>\n<script type=\'text/javascript\' src=\'http://wms-%REGION%.amazon-adsystem.com/20070822/%MPLACE%/js/AmazonWidgets.js\'>\n</script>\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:50:\"Upgrade for Amazon Ad Migration (1st August 2015).\";s:4:\"Type\";s:5:\"Multi\";s:11:\"Preview_Off\";i:0;}s:14:\"preview script\";a:7:{s:4:\"Name\";s:14:\"Preview Script\";s:11:\"Description\";s:50:\"Add Amazon Preview Pop-up script (limited locales)\";s:7:\"Content\";s:276:\"\n<script type=\"text/javascript\" src=\"http://wms-%REGION%.amazon-adsystem.com/20070822/%MPLACE%/js/link-enhancer-common.js?tag=%TAG%\">\n</script>\n<noscript>\n <img src=\"http://wms-%REGION%.amazon-adsystem.com/20070822/%MPLACE%/img/noscript.gif?tag=%TAG%\" alt=\"\" />\n</noscript>\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:50:\"Upgrade for Amazon Ad Migration (1st August 2015).\";s:4:\"Type\";s:7:\"No ASIN\";s:11:\"Preview_Off\";i:1;}s:9:\"thumbnail\";a:7:{s:4:\"Name\";s:9:\"Thumbnail\";s:11:\"Description\";s:20:\"Localised Thumb Link\";s:7:\"Content\";s:459:\"\n<div class="al_found%FOUND%">\n %LINK_OPEN%<img alt="%TITLE%" title="%TITLE%" src="%THUMB%" class="%IMAGE_CLASS%">%LINK_CLOSE%\n<img src="http://www.assoc-amazon.%TLD%/e/ir?t=%TAG%&l=as2&o=%MPLACE_ID%&a=%ASIN%" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />\n</div>\";s:4:\"Type\";s:7:\"Product\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:23:\"Add impression tracking\";s:11:\"Preview_Off\";i:0;}s:8:\"wishlist\";a:7:{s:4:\"Name\";s:8:\"Wishlist\";s:11:\"Description\";s:29:\"Used to generate the wishlist\";s:7:\"Content\";s:939:\"\n<div class="al_found%FOUND%">\n <div class="amazon_prod">\n <div class="amazon_img_container">\n %LINK_OPEN%<img class="%IMAGE_CLASS%" src="%THUMB%">%LINK_CLOSE%\n </div>\n <div class="amazon_text_container">\n <p>%LINK_OPEN%%TITLE%%LINK_CLOSE%</p>\n <div class="amazon_details">\n <p>by %ARTIST% [%MANUFACTURER%]<br />\n Rank/Rating: %RANK%/%RATING%<br />\n <b>Price: <span class="amazon_price">%PRICE%</span></b>\n </p>\n </div>\n </div>\n </div>\n<img src="http://www.assoc-amazon.%TLD%/e/ir?t=%TAG%&l=as2&o=%MPLACE_ID%&a=%ASIN%" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />\n</div>\";s:4:\"Type\";s:7:\"Product\";s:7:\"Version\";s:1:\"2\";s:6:\"Notice\";s:23:\"Add impression tracking\";s:11:\"Preview_Off\";i:0;}}','yes'),(1087,'widget_banner','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1099,'custom_banners_custom_css','','yes'),(1100,'custom_banners_use_big_link','1','yes'),(1101,'custom_banners_open_link_in_new_window','1','yes'),(1109,'custom_banners_cache_buster','','yes'),(1110,'widget_rotatingbannerwidget','a:2:{i:2;a:20:{s:5:\"title\";s:16:\"Links & Sponsors\";s:11:\"num_banners\";s:2:\"10\";s:16:\"caption_position\";s:6:\"bottom\";s:13:\"use_image_tag\";N;s:16:\"show_pager_icons\";N;s:10:\"transition\";s:10:\"scrollHorz\";s:5:\"group\";s:0:\"\";s:5:\"timer\";s:4:\"4000\";s:14:\"pause_on_hover\";s:4:\"true\";s:18:\"link_entire_banner\";s:1:\"1\";s:23:\"open_link_in_new_window\";s:1:\"1\";s:12:\"show_caption\";N;s:15:\"show_cta_button\";N;s:13:\"banner_height\";s:4:\"auto\";s:16:\"banner_height_px\";s:3:\"200\";s:12:\"banner_width\";s:4:\"auto\";s:15:\"banner_width_px\";s:3:\"600\";s:11:\"auto_height\";s:1:\"1\";s:9:\"prev_next\";N;s:6:\"paused\";N;}s:12:\"_multiwidget\";i:1;}','yes'),(1111,'_transient__custom_bs_webfont_str','x','yes'),(1133,'widget_singlebannerwidget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1134,'widget_area','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1137,'_site_transient_timeout_browser_6c87615462301d709781c5732ebdb395','1439561539','yes'),(1174,'widget_simpleimage','a:12:{i:2;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:262;s:4:\"link\";s:28:\"http://www.beloitauction.com\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:3;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:270;s:4:\"link\";s:49:\"https://www.facebook.com/candyrain.crafts?fref=ts\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:4;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:274;s:4:\"link\";s:47:\"https://www.facebook.com/ladolphlius.richardson\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:5;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:273;s:4:\"link\";s:48:\"https://www.facebook.com/MediumJonnaKay/timeline\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:6;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:276;s:4:\"link\";s:31:\"https://www.facebook.com/pro251\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:7;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:287;s:4:\"link\";s:19:\"http://420kr3w.com/\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:8;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:278;s:4:\"link\";s:41:\"https://www.reverbnation.com/earthtoclark\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:9;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:280;s:4:\"link\";s:23:\"http://rodthebarber.com\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:10;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:281;s:4:\"link\";s:28:\"http://www.tindogrecords.com\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:11;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:288;s:4:\"link\";s:52:\"http://www.backyardbarbequejanesville.com/index.html\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}i:12;a:8:{s:5:\"title\";s:0:\"\";s:8:\"image_id\";i:299;s:4:\"link\";s:20:\"http://ompradio.com/\";s:9:\"link_text\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:4:\"text\";s:0:\"\";s:10:\"new_window\";b:1;s:10:\"image_size\";s:6:\"medium\";}s:12:\"_multiwidget\";i:1;}','yes'),(1165,'vwls_db_version','1.2','yes'),(1166,'banner_groups_children','a:0:{}','yes'),(1175,'VWliveStreamingOptions','a:84:{s:8:\"userName\";s:13:\"user_nicename\";s:12:\"postChannels\";s:1:\"1\";s:12:\"userChannels\";s:1:\"1\";s:11:\"anyChannels\";s:1:\"0\";s:11:\"custom_post\";s:7:\"channel\";s:12:\"postTemplate\";s:8:\"page.php\";s:11:\"disablePage\";s:1:\"0\";s:12:\"disablePageC\";s:1:\"0\";s:10:\"thumbWidth\";s:3:\"240\";s:11:\"thumbHeight\";s:3:\"180\";s:7:\"perPage\";s:1:\"6\";s:8:\"postName\";s:6:\"custom\";s:11:\"rtmp_server\";s:29:\"rtmp://localhost/videowhisper\";s:8:\"rtmp_amf\";s:4:\"AMF3\";s:12:\"httpstreamer\";s:37:\"http://localhost:1935/videowhisper-x/\";s:10:\"ffmpegPath\";s:21:\"/usr/local/bin/ffmpeg\";s:15:\"ffmpegTranscode\";s:71:\"-analyzeduration 0 -vcodec copy -acodec libfaac -ac 2 -ar 22050 -ab 96k\";s:12:\"canBroadcast\";s:7:\"members\";s:13:\"broadcastList\";s:42:\"Super Admin, Administrator, Editor, Author\";s:11:\"maxChannels\";s:1:\"2\";s:12:\"externalKeys\";s:1:\"1\";s:22:\"externalKeysTranscoder\";s:1:\"1\";s:10:\"rtmpStatus\";s:1:\"0\";s:8:\"canWatch\";s:3:\"all\";s:9:\"watchList\";s:67:\"Super Admin, Administrator, Editor, Author, Contributor, Subscriber\";s:9:\"onlyVideo\";s:1:\"0\";s:8:\"noEmbeds\";s:1:\"0\";s:11:\"premiumList\";s:42:\"Super Admin, Administrator, Editor, Author\";s:15:\"canWatchPremium\";s:3:\"all\";s:16:\"watchListPremium\";s:67:\"Super Admin, Administrator, Editor, Author, Contributor, Subscriber\";s:19:\"premiumLevelsNumber\";s:1:\"2\";s:13:\"premiumLevels\";s:0:\"\";s:13:\"broadcastTime\";s:3:\"600\";s:9:\"watchTime\";s:4:\"3000\";s:14:\"pBroadcastTime\";s:4:\"6000\";s:10:\"pWatchTime\";s:5:\"30000\";s:9:\"timeReset\";s:2:\"30\";s:11:\"bannedNames\";s:12:\"bann1, bann2\";s:13:\"camResolution\";s:7:\"480x360\";s:6:\"camFPS\";s:2:\"15\";s:12:\"camBandwidth\";s:5:\"40960\";s:15:\"camMaxBandwidth\";s:5:\"81920\";s:13:\"pCamBandwidth\";s:5:\"65536\";s:16:\"pCamMaxBandwidth\";s:6:\"163840\";s:11:\"transcoding\";s:1:\"1\";s:10:\"videoCodec\";s:4:\"H264\";s:12:\"codecProfile\";s:8:\"baseline\";s:10:\"codecLevel\";s:3:\"3.1\";s:10:\"soundCodec\";s:5:\"Speex\";s:12:\"soundQuality\";s:1:\"9\";s:7:\"micRate\";s:2:\"22\";s:17:\"onlineExpiration0\";s:3:\"310\";s:17:\"onlineExpiration1\";s:2:\"40\";s:10:\"parameters\";s:212:\"&bufferLive=1&bufferFull=1&showCredit=1&disconnectOnTimeout=1&offlineMessage=Channel+Offline&disableVideo=0&disableChat=0&disableUsers=0&fillWindow=0&adsTimeout=15000&externalInterval=360000&statusInterval=300000\";s:21:\"parametersBroadcaster\";s:231:\"&bufferLive=2&bufferFull=2&showCamSettings=1&advancedCamSettings=1&configureSource=1&generateSnapshots=1&snapshotsTime=60000&room_limit=500&showTimer=1&showCredit=1&disconnectOnTimeout=1&externalInterval=360000&statusInterval=30000\";s:10:\"layoutCode\";s:212:\"id=0&label=Video&x=10&y=45&width=325&height=298&resize=true&move=true; id=1&label=Chat&x=340&y=45&width=293&height=298&resize=true&move=true; id=2&label=Users&x=638&y=45&width=172&height=298&resize=true&move=true\";s:10:\"watchStyle\";s:51:\"width: 100%;\nheight: 400px;\nborder: solid 3px #999;\";s:8:\"overLogo\";s:105:\"http://thebeloitpod.com/wordpress1/wp-content/plugins/videowhisper-live-streaming-integration/ls/logo.png\";s:8:\"overLink\";s:27:\"http://www.videowhisper.com\";s:8:\"adServer\";s:3:\"ads\";s:11:\"adsInterval\";s:5:\"20000\";s:7:\"adsCode\";s:301:\"<B>Sample Ad</B><BR>Edit ads from plugin settings. Also edit Ads Interval in milliseconds (0 to disable ad calls). Also see <a href=\"http://www.adinchat.com\" target=\"_blank\"><U><B>AD in Chat</B></U></a> compatible ad management server for setting up ad rotation. Ads do not show on premium channels.\";s:15:\"translationCode\";s:3340:\"<t text=\"Video is Disabled\" translation=\"Video is Disabled\"/>\n<t text=\"Bold\" translation=\"Bold\"/>\n<t text=\"Sound is Enabled\" translation=\"Sound is Enabled\"/>\n<t text=\"Publish a video stream using the settings below without any spaces.\" translation=\"Publish a video stream using the settings below without any spaces.\"/>\n<t text=\"Click Preview for Streaming Settings\" translation=\"Click Preview for Streaming Settings\"/>\n<t text=\"DVD NTSC\" translation=\"DVD NTSC\"/>\n<t text=\"DVD PAL\" translation=\"DVD PAL\"/>\n<t text=\"Video Source\" translation=\"Video Source\"/>\n<t text=\"Send\" translation=\"Send\"/>\n<t text=\"Cinema\" translation=\"Cinema\"/>\n<t text=\"Update Show Title\" translation=\"Update Show Title\"/>\n<t text=\"Public Channel: Click to Copy\" translation=\"Public Channel: Click to Copy\"/>\n<t text=\"Channel Link\" translation=\"Channel Link\"/>\n<t text=\"Kick\" translation=\"Kick\"/>\n<t text=\"Embed Channel HTML Code\" translation=\"Embed Channel HTML Code\"/>\n<t text=\"Open In Browser\" translation=\"Open In Browser\"/>\n<t text=\"Embed Video HTML Code\" translation=\"Embed Video HTML Code\"/>\n<t text=\"Snapshot Image Link\" translation=\"Snapshot Image Link\"/>\n<t text=\"SD\" translation=\"SD\"/>\n<t text=\"External Encoder\" translation=\"External Encoder\"/>\n<t text=\"Source\" translation=\"Source\"/>\n<t text=\"Very Low\" translation=\"Very Low\"/>\n<t text=\"Low\" translation=\"Low\"/>\n<t text=\"HDTV\" translation=\"HDTV\"/>\n<t text=\"Webcam\" translation=\"Webcam\"/>\n<t text=\"Resolution\" translation=\"Resolution\"/>\n<t text=\"Emoticons\" translation=\"Emoticons\"/>\n<t text=\"HDCAM\" translation=\"HDCAM\"/>\n<t text=\"FullHD\" translation=\"FullHD\"/>\n<t text=\"Preview Shows as Compressed\" translation=\"Preview Shows as Compressed\"/>\n<t text=\"Rate\" translation=\"Rate\"/>\n<t text=\"Very Good\" translation=\"Very Good\"/>\n<t text=\"Preview Shows as Captured\" translation=\"Preview Shows as Captured\"/>\n<t text=\"Framerate\" translation=\"Framerate\"/>\n<t text=\"High\" translation=\"High\"/>\n<t text=\"Toggle Preview Compression\" translation=\"Toggle Preview Compression\"/>\n<t text=\"Latency\" translation=\"Latency\"/>\n<t text=\"CD\" translation=\"CD\"/>\n<t text=\"Your connection performance:\" translation=\"Your connection performance:\"/>\n<t text=\"Small Delay\" translation=\"Small Delay\"/>\n<t text=\"Sound Effects\" translation=\"Sound Effects\"/>\n<t text=\"Username\" translation=\"Nickname\"/>\n<t text=\"Medium Delay\" translation=\"Medium Delay\"/>\n<t text=\"Toggle Microphone\" translation=\"Toggle Microphone\"/>\n<t text=\"Video is Enabled\" translation=\"Video is Enabled\"/>\n<t text=\"Radio\" translation=\"Radio\"/>\n<t text=\"Talk\" translation=\"Talk\"/>\n<t text=\"Viewers\" translation=\"Viewers\"/>\n<t text=\"Toggle External Encoder\" translation=\"Toggle External Encoder\"/>\n<t text=\"Sound is Disabled\" translation=\"Sound is Disabled\"/>\n<t text=\"Sound Fx\" translation=\"Sound Effects\"/>\n<t text=\"Good\" translation=\"Good\"/>\n<t text=\"Toggle Webcam\" translation=\"Toggle Webcam\"/>\n<t text=\"Bandwidth\" translation=\"Bandwidth\"/>\n<t text=\"Underline\" translation=\"Underline\"/>\n<t text=\"Select Microphone Device\" translation=\"Select Microphone Device\"/>\n<t text=\"Italic\" translation=\"Italic\"/>\n<t text=\"Select Webcam Device\" translation=\"Select Webcam Device\"/>\n<t text=\"Big Delay\" translation=\"Big Delay\"/>\n<t text=\"Excellent\" translation=\"Excellent\"/>\n<t text=\"Apply Settings\" translation=\"Apply Settings\"/>\n<t text=\"Very High\" translation=\"Very High\"/>\";s:9:\"customCSS\";s:2127:\"<style type=\"text/css\">\n\n.videowhisperChannel\n{\nposition: relative;\ndisplay:inline-block;\n\n border:1px solid #aaa;\n background-color:#777;\n padding: 0px;\n margin: 2px;\n\n width: 240px;\n height: 180px;\n}\n\n.videowhisperChannel:hover {\n border:1px solid #fff;\n}\n\n.videowhisperChannel IMG\n{\npadding: 0px;\nmargin: 0px;\nborder: 0px;\n}\n\n.videowhisperTitle\n{\nposition: absolute;\ntop:5px;\nleft:5px;\nfont-size: 20px;\ncolor: #FFF;\ntext-shadow:1px 1px 1px #333;\n}\n\n.videowhisperTime\n{\nposition: absolute;\nbottom:8px;\nleft:5px;\nfont-size: 15px;\ncolor: #FFF;\ntext-shadow:1px 1px 1px #333;\n}\n\n\n.videowhisperButton {\n -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;\n -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;\n box-shadow:inset 0px 1px 0px 0px #ffffff;\n -webkit-border-top-left-radius:6px;\n -moz-border-radius-topleft:6px;\n border-top-left-radius:6px;\n -webkit-border-top-right-radius:6px;\n -moz-border-radius-topright:6px;\n border-top-right-radius:6px;\n -webkit-border-bottom-right-radius:6px;\n -moz-border-radius-bottomright:6px;\n border-bottom-right-radius:6px;\n -webkit-border-bottom-left-radius:6px;\n -moz-border-radius-bottomleft:6px;\n border-bottom-left-radius:6px;\n text-indent:0;\n border:1px solid #dcdcdc;\n display:inline-block;\n color:#666666;\n font-family:Verdana;\n font-size:15px;\n font-weight:bold;\n font-style:normal;\n height:50px;\n line-height:50px;\n width:200px;\n text-decoration:none;\n text-align:center;\n text-shadow:1px 1px 0px #ffffff;\n background-color:#e9e9e9;\n\n}\n\n.videowhisperButton:hover {\n background-color:#f9f9f9;\n}\n\n.videowhisperButton:active {\n position:relative;\n top:1px;\n}\n\ntd {\n padding: 4px;\n}\n\ntable, .videowhisperTable {\n border-spacing: 4px;\n border-collapse: separate;\n}\n\n.videowhisperDropdown {\n display:inline-block;\n border: 1px solid #111;\n overflow: hidden;\n border-radius:3px;\n color: #eee;\n background: #556570;\n width: 240px;\n}\n\n.videowhisperSelect {\n width: 100%;\n border: none;\n box-shadow: none;\n background: transparent;\n background-image: none;\n -webkit-appearance: none;\n}\n\n.videowhisperSelect:focus {\n outline: none;\n}\n\n</style>\n\";s:11:\"uploadsPath\";s:92:\"\\\\WDP\\DFS\\30\\8\\5\\6\\3033004658\\user\\sites\\4795691.site\\www\\wordpress1/wp-content/uploads/vwls\";s:8:\"tokenKey\";s:12:\"VideoWhisper\";s:6:\"webKey\";s:12:\"VideoWhisper\";s:11:\"serverRTMFP\";s:64:\"rtmfp://stratus.adobe.com/f1533cc06e4de4b56399b10d-1a624022ff71/\";s:8:\"p2pGroup\";s:12:\"VideoWhisper\";s:11:\"supportRTMP\";s:1:\"1\";s:10:\"supportP2P\";s:1:\"0\";s:10:\"alwaysRTMP\";s:1:\"0\";s:9:\"alwaysP2P\";s:1:\"0\";s:11:\"alwaysWatch\";s:1:\"0\";s:25:\"disableBandwidthDetection\";s:1:\"1\";s:6:\"mycred\";s:1:\"1\";s:12:\"videowhisper\";i:0;s:10:\"accessList\";s:4:\"None\";s:11:\"accessPrice\";s:4:\"None\";s:8:\"logoHide\";s:34:\"Super Admin, Administrator, Editor\";s:10:\"logoCustom\";s:26:\"Super Admin, Administrator\";s:7:\"adsHide\";s:34:\"Super Admin, Administrator, Editor\";s:9:\"adsCustom\";s:26:\"Super Admin, Administrator\";s:9:\"transcode\";s:34:\"Super Admin, Administrator, Editor\";}','yes'),(1176,'vwls_page_manage','282','yes'),(1177,'vwls_page_channels','283','yes'),(6156,'seo_ultimate','a:3:{s:7:\"version\";s:7:\"7.6.5.7\";s:7:\"modules\";a:38:{s:7:\"modules\";i:10;s:7:\"noindex\";i:10;s:10:\"more-links\";i:10;s:15:\"sharing-buttons\";i:10;s:13:\"fofs-settings\";i:10;s:10:\"permalinks\";i:10;s:15:\"global-settings\";i:10;s:13:\"settings-data\";i:10;s:9:\"uninstall\";i:10;s:13:\"rich-snippets\";i:10;s:7:\"widgets\";i:10;s:7:\"linkbox\";i:10;s:17:\"content-autolinks\";i:10;s:26:\"content-autolinks-settings\";i:10;s:16:\"footer-autolinks\";i:10;s:8:\"fofs-log\";i:10;s:9:\"canonical\";i:10;s:25:\"footer-autolinks-settings\";i:10;s:4:\"fofs\";i:10;s:12:\"import-aiosp\";i:10;s:12:\"author-links\";i:10;s:9:\"user-code\";i:10;s:9:\"autolinks\";i:10;s:5:\"files\";i:10;s:7:\"install\";i:10;s:21:\"internal-link-aliases\";i:10;s:17:\"meta-descriptions\";i:10;s:11:\"meta-robots\";i:10;s:9:\"opengraph\";i:10;s:8:\"settings\";i:10;s:11:\"wp-settings\";i:10;s:6:\"titles\";i:10;s:16:\"webmaster-verify\";i:10;s:8:\"sds-blog\";i:10;s:4:\"misc\";i:10;s:13:\"link-nofollow\";i:-10;s:13:\"meta-keywords\";i:-10;s:5:\"slugs\";i:-10;}s:4:\"cron\";a:1:{s:8:\"sds-blog\";a:1:{s:13:\"load_blog_rss\";a:3:{i:0;s:25:\"su-sds-blog-load-blog-rss\";i:1;i:1439915294;i:2;s:6:\"hourly\";}}}}','yes'),(6157,'seo_ultimate_module_more-links','a:1:{s:7:\"default\";s:45:\"Continue reading “{post}” »\";}','yes'),(6158,'seo_ultimate_module_sharing-buttons','a:3:{s:8:\"provider\";s:4:\"none\";s:14:\"sharethis_code\";s:104:\"<script type=\"text/javascript\" charset=\"utf-8\" src=\"http://w.sharethis.com/widget/?wp={wpver}\"></script>\";s:12:\"addthis_code\";s:298:\"<a class=\"addthis_button\" href=\"http://addthis.com/bookmark.php?v=250\"><img src=\"http://s7.addthis.com/static/btn/v2/lg-share-en.gif\" width=\"125\" height=\"16\" alt=\"Bookmark and Share\" style=\"border:0\"/></a><script type=\"text/javascript\" src=\"http://s7.addthis.com/js/250/addthis_widget.js\"></script>\";}','yes'),(6159,'seo_ultimate_module_404s','a:7:{s:10:\"exceptions\";s:66:\"*/favicon.ico\n*/apple-touch-icon.png\n*/pingserver.php\n*/xmlrpc.php\";s:12:\"max_log_size\";i:100;s:11:\"log_enabled\";b:1;s:16:\"restrict_logging\";b:1;s:11:\"log_spiders\";b:1;s:24:\"log_errors_with_referers\";b:1;s:3:\"log\";a:4:{s:65:\"http://thebeloitpod.com/wordpress1/index.php/members-3/reesewood/\";a:5:{s:9:\"hit_count\";i:15;s:6:\"is_new\";b:1;s:8:\"referers\";a:2:{i:0;s:62:\"http://thebeloitpod.com/wordpress1/index.php/author/ReeseWood/\";i:1;s:113:\"http://thebeloitpod.com/wordpress1/index.php/2015/08/24/my-interview-with-whitney-helm-for-the-beloit-daily-news/\";}s:11:\"user_agents\";a:4:{i:0;s:19:\"Go 1.1 package http\";i:1;s:64:\"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\";i:2;s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";i:3;s:69:\"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko\";}s:13:\"last_hit_time\";i:1444256157;}s:61:\"http://thebeloitpod.com/wordpress1/index.php/subscribedonate/\";a:5:{s:9:\"hit_count\";i:2;s:6:\"is_new\";b:1;s:8:\"referers\";a:0:{}s:11:\"user_agents\";a:2:{i:0;s:64:\"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\";i:1;s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";}s:13:\"last_hit_time\";i:1443824099;}s:69:\"http://thebeloitpod.com/wordpress1/index.php/2015/07/27/sean-patrick/\";a:5:{s:9:\"hit_count\";i:1;s:6:\"is_new\";b:1;s:8:\"referers\";a:0:{}s:11:\"user_agents\";a:1:{i:0;s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";}s:13:\"last_hit_time\";i:1444004733;}s:54:\"http://thebeloitpod.com/wordpress1/index.php/products/\";a:5:{s:9:\"hit_count\";i:1;s:6:\"is_new\";b:1;s:8:\"referers\";a:0:{}s:11:\"user_agents\";a:1:{i:0;s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";}s:13:\"last_hit_time\";i:1444006053;}}}','yes'),(6160,'seo_ultimate_module_permalinks','a:1:{s:20:\"add_rule_if_conflict\";b:1;}','yes'),(6161,'seo_ultimate_module_settings','a:4:{s:16:\"attribution_link\";b:0;s:9:\"mark_code\";b:1;s:9:\"sdf_theme\";b:1;s:16:\"seo_toolbar_menu\";b:1;}','yes'),(6162,'seo_ultimate_module_linkbox','a:1:{s:4:\"html\";s:298:\"<div class=\"su-linkbox\" id=\"post-{id}-linkbox\"><div class=\"su-linkbox-label\">Link to this post!</div><div class=\"su-linkbox-field\"><input type=\"text\" value=\"<a href="{url}">{title}</a>\" onclick=\"javascript:this.select()\" readonly=\"readonly\" style=\"width: 100%;\" /></div></div>\";}','yes'),(6163,'seo_ultimate_module_autolinks','a:18:{s:25:\"dampen_sitewide_lpa_value\";i:50;s:34:\"enable_perlink_dampen_sitewide_lpa\";b:0;s:17:\"enable_self_links\";b:0;s:24:\"enable_current_url_links\";b:0;s:15:\"limit_lpp_value\";i:5;s:15:\"limit_lpa_value\";i:2;s:15:\"limit_lpu_value\";i:1;s:13:\"linkfree_tags\";s:30:\"code,pre,kbd,h1,h2,h3,h4,h5,h6\";s:22:\"autolink_posttype_post\";b:1;s:22:\"autolink_posttype_page\";b:1;s:28:\"autolink_posttype_attachment\";b:1;s:23:\"autolink_posttype_forum\";b:1;s:23:\"autolink_posttype_topic\";b:1;s:23:\"autolink_posttype_reply\";b:1;s:26:\"footer_link_section_format\";s:67:\"<div id=\"su-footer-links\" style=\"text-align: center;\">{links}</div>\";s:18:\"footer_link_format\";s:6:\"{link}\";s:15:\"footer_link_sep\";s:3:\" | \";s:5:\"links\";a:0:{}}','yes'),(6164,'seo_ultimate_module_import-aiosp','a:3:{s:15:\"import_postmeta\";b:1;s:25:\"postmeta_bothexist_action\";s:4:\"skip\";s:17:\"after_post_import\";s:7:\"nothing\";}','yes'),(6165,'seo_ultimate_module_user-code','a:1:{s:14:\"global_wp_head\";s:0:\"\";}','yes'),(6166,'seo_ultimate_module_internal-link-aliases','a:2:{s:9:\"alias_dir\";s:2:\"go\";s:7:\"aliases\";a:0:{}}','yes'),(6167,'seo_ultimate_module_meta','a:6:{s:32:\"home_description_tagline_default\";b:1;s:25:\"description_posttype_post\";s:9:\"{excerpt}\";s:25:\"description_posttype_page\";s:0:\"\";s:29:\"description_taxonomy_category\";s:13:\"{description}\";s:29:\"description_taxonomy_post_tag\";s:13:\"{description}\";s:17:\"description_paged\";s:31:\"{meta_description} - Page {num}\";}','yes'),(6168,'seo_ultimate_module_opengraph','a:6:{s:20:\"default_post_og_type\";s:7:\"article\";s:20:\"default_page_og_type\";s:7:\"article\";s:25:\"default_post_twitter_card\";s:7:\"summary\";s:25:\"default_page_twitter_card\";s:7:\"summary\";s:31:\"default_attachment_twitter_card\";s:5:\"photo\";s:24:\"enable_og_article_author\";b:1;}','yes'),(6169,'seo_ultimate_module_titles','a:14:{s:10:\"title_home\";s:6:\"{blog}\";s:12:\"title_single\";s:15:\"{post} | {blog}\";s:10:\"title_page\";s:15:\"{page} | {blog}\";s:14:\"title_category\";s:19:\"{category} | {blog}\";s:9:\"title_tag\";s:14:\"{tag} | {blog}\";s:9:\"title_day\";s:43:\"Archives for {month} {day}, {year} | {blog}\";s:11:\"title_month\";s:36:\"Archives for {month} {year} | {blog}\";s:10:\"title_year\";s:28:\"Archives for {year} | {blog}\";s:12:\"title_author\";s:26:\"Posts by {author} | {blog}\";s:12:\"title_search\";s:35:\"Search Results for {query} | {blog}\";s:9:\"title_404\";s:22:\"404 Not Found | {blog}\";s:11:\"title_paged\";s:20:\"{title} - Page {num}\";s:13:\"terms_ucwords\";b:1;s:14:\"rewrite_method\";s:2:\"ob\";}','yes'),(6170,'seo_ultimate_module_sds-blog','a:2:{s:8:\"lastread\";i:1439915294;s:14:\"rss_item_times\";a:30:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;i:0;i:6;i:0;i:7;i:0;i:8;i:0;i:9;i:0;i:10;i:0;i:11;i:0;i:12;i:0;i:13;i:0;i:14;i:0;i:15;i:0;i:16;i:0;i:17;i:0;i:18;i:0;i:19;i:0;i:20;i:0;i:21;i:0;i:22;i:0;i:23;i:0;i:24;i:0;i:25;i:0;i:26;i:0;i:27;i:0;i:28;i:0;i:29;i:0;}}','yes'),(10186,'stats_cache','a:2:{s:32:\"d0d4eff383aa9a7c042cbcd64e71122d\";a:1:{i:1444241318;a:0:{}}s:32:\"cf5051e947bf1899555cf0ca251c5e3d\";a:1:{i:1444241318;a:0:{}}}','yes'),(29560,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1444284518','no'),(29561,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Sep 2015 10:36:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.4-alpha-34910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.3.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/09/wordpress-4-3-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2015/09/wordpress-4-3-1/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Sep 2015 15:22:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3914\";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:439:\"WordPress 4.3.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation. WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by […]\";s: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:\"Samuel Sidler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4022:\"<div class=\"storycontent\">\n<p>WordPress 4.3.1 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation.</p>\n<ul>\n<li>WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by Shahar Tal and Netanel Rubin of <a href=\"http://checkpoint.com/\">Check Point</a>.</li>\n<li>A separate cross-site scripting vulnerability was found in the user list table. Reported by Ben Bidner of the WordPress security team.</li>\n<li>Finally, in certain cases, users without proper permissions could publish private posts and make them sticky (CVE-2015-5715). Reported by Shahar Tal and Netanel Rubin of <a href=\"http://checkpoint.com/\">Check Point</a>.</li>\n</ul>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.3.1 also fixes twenty-six bugs. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.3.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.3/?rev=34199&stop_rev=33647\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.3.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.3.1.</p>\n</div>\n<p>Thanks to everyone who contributed to 4.3.1:</p>\n<p><a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/DrewAPicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dustinbolton\">dustinbolton</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hauvong\">hauvong</a>, <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jobst\">jobst</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikeo\">nikeo</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/figureone\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/umeshnevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/welcher\">welcher</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/09/wordpress-4-3-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 4.3 “Billie”\";s: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:42:\"https://wordpress.org/news/2015/08/billie/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2015/08/billie/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Aug 2015 19:12: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3845\";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:352:\"Version 4.3 of WordPress, named “Billie” in honor of jazz singer Billie Holiday, is available for download or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site. Menus in the Customizer Create your menu, update it, and assign it, all while live-previewing in […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:22598:\"<p style=\"margin: 0;height: 0\"><img src=\"https://wordpress.org/news/files/2015/08/WordPress-4-3-billie-1024x574.png\" alt=\"WordPress 4.3 - "Billie"\" width=\"692\" height=\"388\" class=\"alignnone size-large wp-image-3896\" style=\"height:0px;width: 0px;margin: 0\" srcset=\"https://wordpress.org/news/files/2015/08/WordPress-4-3-billie-300x168.png 300w, https://wordpress.org/news/files/2015/08/WordPress-4-3-billie-1024x574.png 1024w, https://wordpress.org/news/files/2015/08/WordPress-4-3-billie.png 3018w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></p>\n<p>Version 4.3 of WordPress, named “Billie” in honor of jazz singer <a href=\"https://en.wikipedia.org/wiki/Billie_Holiday\">Billie Holiday</a>, is available for <a href=\"https://wordpress.org/download/\">download</a> or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site.</p>\n<p><iframe width=\'692\' height=\'389\' src=\'https://videopress.com/embed/T54Iy7Tw?hd=1\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script></p>\n<hr />\n<h2>Menus in the Customizer</h2>\n<div><img src=\"//s.w.org/images/core/4.3/menu-customizer.png\" alt=\"\" /></div>\n<p>Create your menu, update it, and assign it, all while live-previewing in the customizer. The streamlined customizer design provides a mobile-friendly and accessible interface. With every release, it becomes easier and faster to make your site just the way you want it.</p>\n<hr />\n<h2>Formatting Shortcuts</h2>\n<div style=\"margin-bottom: 0\"><div style=\"width: 640px; \" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-3845-1\" width=\"640\" height=\"360\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"//s.w.org/images/core/4.3/formatting.mp4?_=1\" /><source type=\"video/webm\" src=\"//s.w.org/images/core/4.3/formatting.webm?_=1\" /><source type=\"video/ogg\" src=\"//s.w.org/images/core/4.3/formatting.ogv?_=1\" /><a href=\"//s.w.org/images/core/4.3/formatting.mp4\">//s.w.org/images/core/4.3/formatting.mp4</a></video></div></div>\n<p>Your writing flow just got faster with new formatting shortcuts in WordPress 4.3. Use asterisks to create lists and number signs to make a heading. No more breaking your flow; your text looks great with a <code>*</code> and a <code>#</code>.</p>\n<hr />\n<h2>Site Icons</h2>\n<p><img src=\"//s.w.org/images/core/4.3/site-icon-customizer.png\" alt=\"\" /><br />\n <br />\nSite icons represent your site in browser tabs, bookmark menus, and on the home screen of mobile devices. Add your unique site icon in the customizer; it will even stay in place when you switch themes. Make your whole site reflect your brand.</p>\n<hr />\n<h2>Better Passwords</h2>\n<p><img src=\"//s.w.org/images/core/4.3/better-passwords.png\" alt=\"\" /><br />\n <br />\nKeep your site more secure with WordPress’ improved approach to passwords. Instead of receiving passwords via email, you’ll get a password reset link. When you add new users to your site or edit a user profile, WordPress will automatically generate a secure password.</p>\n<hr />\n<h2>Other improvements</h2>\n<ul>\n<li><strong>A smoother admin experience</strong> – Refinements to the list view across the admin make your WordPress more accessible and easier to work with on any device.</li>\n<li><strong>Comments turned off on pages</strong> – All new pages that you create will have comments turned off. Keep discussions to your blog, right where they’re supposed to happen.</li>\n<li><strong>Customize your site quickly</strong> – Wherever you are on the front-end, you can click the customize link in the toolbar to swiftly make changes to your site.</li>\n</ul>\n<hr />\n<h2>The Team</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/obenland\"><img src=\"https://www.gravatar.com/avatar/2370ea5912750f4cb0f3c51ae1cbca55?d=mm&s=180&r=G\" alt=\"Konstantin Obenland\" width=\"80\" height=\"80\" /></a>This release was led by <a href=\"http://konstantin.obenland.it/\">Konstantin Obenland</a>, with the help of these fine individuals. There are 246 contributors with props in this release. Pull up some Billie Holiday on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamkheckler\">Adam Heckler</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bjorklund</a>, <a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/andfinally\">andfinally</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andg\">Andrea Gandino</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/antpb\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/anubisthejackle\">anubisthejackle</a>, <a href=\"https://profiles.wordpress.org/aramzs\">Aram Zucker-Scharff</a>, <a href=\"https://profiles.wordpress.org/arjunskumar\">Arjun S Kumar</a>, <a href=\"https://profiles.wordpress.org/avnarun\">avnarun</a>, <a href=\"https://profiles.wordpress.org/brad2dabone\">Bad Feather</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/binarykitten\">BinaryKitten</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornjohansen\">Bjorn Johansen</a>, <a href=\"https://profiles.wordpress.org/bolo1988\">bolo1988</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradt\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/bramd\">Bram Duvigneau</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/brianlayman\">Brian Layman</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calevans\">CalEvans</a>, <a href=\"https://profiles.wordpress.org/chasewiseman\">Chase Wiseman</a>, <a href=\"https://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Mte90 Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/daniluk4000\">daniluk4000</a>, <a href=\"https://profiles.wordpress.org/dmchale\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/daveal\">DaveAl</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/daxelrod\">daxelrod</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/realloc\">Dennis Ploetner</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipesh.kakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dustinbolton\">dustinbolton</a>, <a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>, <a href=\"https://profiles.wordpress.org/eclev91\">eclev91</a>, <a href=\"https://profiles.wordpress.org/eligijus\">eligijus</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/francoeurdavid\">francoeurdavid</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/gabrielperezs\">gabrielperezs</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/glennm\">glennm</a>, <a href=\"https://profiles.wordpress.org/gtuk\">gtuk</a>, <a href=\"https://profiles.wordpress.org/hailin\">hailin</a>, <a href=\"https://profiles.wordpress.org/hauvong\">hauvong</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrikakselsen\">henrikakselsen</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hrishiv90\">Hrishikesh Vaipurkar</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isaacchapman\">isaacchapman</a>, <a href=\"https://profiles.wordpress.org/izem\">izem</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/jadpm\">jadpm</a>, <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jamesgol\">jamesgol</a>, <a href=\"https://profiles.wordpress.org/jancbeck\">jancbeck</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jmichaelward\">Jeremy Ward</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">jipmoors</a>, <a href=\"https://profiles.wordpress.org/eltobiano\">jjberry</a>, <a href=\"https://profiles.wordpress.org/jobst\">Jobst Schmalenbach</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/jkudish\">Joey Kudish</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/picard102\">John Leschinski</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/maxxsnake\">Josh Davis</a>, <a href=\"https://profiles.wordpress.org/jpyper\">Jpyper</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/ungestaltbar\">Kai</a>, <a href=\"https://profiles.wordpress.org/karinchristen\">karinchristen</a>, <a href=\"https://profiles.wordpress.org/karpstrucking\">karpstrucking</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevkoeh\">Kevin Koehler</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leogopal\">Leo Gopal</a>, <a href=\"https://profiles.wordpress.org/loushou\">loushou</a>, <a href=\"https://profiles.wordpress.org/lumaraf\">Lumaraf</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius (Clorith)</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/marsjaninzmarsa\">marsjaninzmarsa</a>, <a href=\"https://profiles.wordpress.org/martinsachse\">martinsachse</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/nikonratm\">Michael</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michaelryanmcneill\">michaelryanmcneill</a>, <a href=\"https://profiles.wordpress.org/mcguive7\">Mickey Kay</a>, <a href=\"https://profiles.wordpress.org/mihai\">mihai</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mrutz\">mrutz</a>, <a href=\"https://profiles.wordpress.org/nabil_kadimi\">nabil_kadimi</a>, <a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nazmulhossainnihal\">Nazmul Hossain Nihal</a>, <a href=\"https://profiles.wordpress.org/nicholas_io\">nicholas_io</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nickmomrik\">Nick Momrik</a>, <a href=\"https://profiles.wordpress.org/nikeo\">nikeo</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/onnimonni\">Onni Hakala</a>, <a href=\"https://profiles.wordpress.org/ozh\">Ozh</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/djpaul\">Paul Gibbs</a>, <a href=\"https://profiles.wordpress.org/figureone\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/peterrknight\">PeterRKnight</a>, <a href=\"https://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/posykrat\">posykrat</a>, <a href=\"https://profiles.wordpress.org/pragunbhutani\">pragunbhutani</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rarylson\">rarylson</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/rauchg\">rauchg</a>, <a href=\"https://profiles.wordpress.org/ravinderk\">Ravinder Kumar</a>, <a href=\"https://profiles.wordpress.org/rclations\">RC Lations</a>, <a href=\"https://profiles.wordpress.org/greuben\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/ritteshpatel\">Ritesh Patel</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rdall\">Robert Dall</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/rhurling\">Rouven Hurling</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/rmarks\">Ryan Marks</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ohryan\">Ryan Neudorf</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/santagada\">santagada</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebastiantiede\">Sebastian</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/designsimply\">Sheri Bigelow</a>, <a href=\"https://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury (stephdau)</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stuartshields\">stuartshields</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar</a>, <a href=\"https://profiles.wordpress.org/sunnyratilal\">Sunny Ratilal</a>, <a href=\"https://profiles.wordpress.org/taka2\">taka2</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thorbrink\">Thor Brink</a>, <a href=\"https://profiles.wordpress.org/creativeinfusion\">Tim Smith</a>, <a href=\"https://profiles.wordpress.org/tlexcellent\">tlexcellent</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tomasm\">Tomas Mackevicius</a>, <a href=\"https://profiles.wordpress.org/tomharrigan\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/toru\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy (LilJimmi) Levesque</a>, <a href=\"https://profiles.wordpress.org/tryon\">Tryon Eggleston</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/desaiuditd\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/umeshnevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/vivekbhusal\">vivekbhusal</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/willnorris\">Will Norris</a>, <a href=\"https://profiles.wordpress.org/willgladstone\">willgladstone</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/willstedt\">willstedt</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/ysalame\">Yuri Salame</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/katzwebdesign\">Zack Katz</a>, and <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>.\n<p> </p>\n<p>Special thanks go to <a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a> for producing the release video, <a href=\"http://hugobaeta.com/\">Hugo Baeta</a> for the design, and <a href=\"http://jacklenox.com/\">Jack Lenox</a> for the voice-over.</p>\n<p>Finally, thanks to all of the contributors who provided subtitles for the release video, which at last count had been translated into 30 languages!</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.4!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/news/2015/08/billie/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.4 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Aug 2015 12:10:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3827\";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:397:\"WordPress 4.2.4 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by Marc-Alexandre Montpas of Sucuri, Helen Hou-Sandí […]\";s: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:\"Samuel Sidler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2011:\"<p>WordPress 4.2.4 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by <a href=\"https://sucuri.net/\">Marc-Alexandre Montpas</a> of Sucuri, <a href=\"http://helenhousandi.com/\">Helen Hou-Sandí</a> of the WordPress security team, <a href=\"http://www.checkpoint.com/\">Netanel Rubin</a> of Check Point, and <a href=\"https://hackerone.com/reactors08\">Ivan Grigorov</a>. It also includes a fix for a potential timing side-channel attack, discovered by <a href=\"http://www.scrutinizer-ci.com/\">Johannes Schmitt</a> of Scrutinizer, and prevents an attacker from locking a post from being edited, discovered by <a href=\"https://www.linkedin.com/in/symbiansymoh\">Mohamed A. Baset</a>.</p>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.4 also fixes four bugs. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.4\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=33573&stop_rev=33396\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.4</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.4.</p>\n<p><em>Already testing WordPress 4.3? The second release candidate is now available (<a href=\"https://wordpress.org/wordpress-4.3-RC2.zip\">zip</a>) and it contains these fixes. For more on 4.3, see <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/\">the RC 1 announcement post</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.3 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2015 23:50:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3817\";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:340:\"The release candidate for WordPress 4.3 is now available. We’ve made more than 100 changes since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.3 on Tuesday, August 18, but we […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2256:\"<p>The release candidate for WordPress 4.3 is now available.</p>\n<p>We’ve made more than <a href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&mode=stop_on_copy&rev=33512&stop_rev=33372&limit=120\">100 changes</a> since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.3 on <strong>Tuesday, August 18</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.3 yet, now is the time!</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.3 RC1, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.3-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.3 and update your plugin’s <em>Tested up to</em> version in the readme to 4.3 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where we’ll continue to post <a href=\"https://make.wordpress.org/core/tag/dev-notes+4-3/\">notes for developers</a> for 4.3.</p>\n<p><em>Drei Monate Arbeit</em><br />\n<em>Endlich das Ziel vor Augen</em><br />\n<em>Bald hab ich Urlaub!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.3 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/07/wordpress-4-2-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2015/07/wordpress-4-2-3/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jul 2015 11:21:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3807\";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:380:\"WordPress 4.2.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.2.2 and earlier are affected by a cross-site scripting vulnerability, which could allow users with the Contributor or Author role to compromise a site. This was initially reported by Jon Cave and […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2708:\"<p>WordPress 4.2.3 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.2.2 and earlier are affected by a cross-site scripting vulnerability, which could allow users with the Contributor or Author role to compromise a site. This was initially reported by <a href=\"https://profiles.wordpress.org/duck_\">Jon Cave</a> and fixed by <a href=\"http://www.miqrogroove.com/\">Robert Chapin</a>, both of the WordPress security team, and later reported by <a href=\"http://klikki.fi/\">Jouko Pynnönen</a>.</p>\n<p>We also fixed an issue where it was possible for a user with Subscriber permissions to create a draft through Quick Draft. Reported by Netanel Rubin from <a href=\"https://www.checkpoint.com/\">Check Point Software Technologies</a>.</p>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.3 also contains fixes for 20 bugs from 4.2. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=33382&stop_rev=32430\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.3.</p>\n<p>Thanks to everyone who contributed to 4.2.3:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/gabrielperezs\">Gabriel Pérez</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Mike Adams</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, and <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-2-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2015 21:55:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3796\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.3 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2212:\"<p>WordPress 4.3 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/\">Beta 3</a> blog posts. Some of the changes in Beta 4 include:</p>\n<ul>\n<li><span class=\"s1\">Fixed several bugs and broken flows in the </span><span class=\"s1\"><strong>publish box </strong></span><span class=\"s1\">in the edit screen.</span></li>\n<li>Addressed a number of edge cases for word count in the <strong>editor</strong>.</li>\n<li><span class=\"s1\"><strong>Site icons</strong> </span><span class=\"s1\">can now be previewed within the customizer. The feature has been removed from general settings.</span></li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&mode=stop_on_copy&rev=33369&stop_rev=33289\">more than 60 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3\">everything we’ve fixed</a>.</p>\n<p><em>Few Tickets Remain</em><br />\n<em>Edge Cases Disappearing</em><br />\n<em>You Must Test Today</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2015 21:49:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3787\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.3 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2529:\"<p>WordPress 4.3 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\">Beta 2</a> blog posts. Some of the changes in Beta 3 include:</p>\n<ul>\n<li>Performance improvements for <strong>Menus in the Customizer</strong>, as well as bug fixes and visual enhancements.</li>\n<li>Added <strong>Site Icon</strong> to the Customizer. The feature is now complete and requires lots of testing. Please help us ensure the site icon feature works well in both Settings and the Customizer.</li>\n<li>The improvements to <strong>Passwords</strong> have been added to the installation flow. When installing and setting up WordPress, a strong password will be suggested to site administrators. Please test and let us know if you encounter issues.</li>\n<li>Improved <strong>accessibility of comments and media list tables</strong>. If you use a screen reader, please let us know if you encounter any issues.</li>\n<li>Lots and lots of code documentation improvements.</li>\n<li><strong>Various other bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=33286&stop_rev=33141&limit=150\">more than 140 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3\">everything we’ve fixed</a>.</p>\n<p><em>Want to test new things?</em><br />\n<em>Wonder how four three shapes up?</em><br />\n<em>Answer: beta three</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 22:04:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3769\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.3 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2876:\"<p>WordPress 4.3 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Fixed an issue in beta 1 where an alert appeared when saving or publishing a new post/page for the first time.</li>\n<li><strong><strong>Customizer</strong></strong> improvements including enhanced accessibility, smoother menu creation and location assignment, and the ability to handle nameless menus. Please help us test menus in the Customizer to fix any remaining edge cases!</li>\n<li>More robust<strong> list tables</strong> with full content support on small screens and a fallback for the primary column for custom list tables. We’d love to know how these list tables, such as All Posts and Comments, work for you now on small screen devices.</li>\n<li>The <strong>Site Icon</strong> feature has been improved so that cropping is skipped if the image is the exact size (512px square) and the media modal now suggests a minimum icon size. Please let us know how the flow feels and if you encounter any glitches!</li>\n<li>The <strong>toolbar</strong> now has a direct link to the customizer, along with quick access to themes, widgets, and menus in the dashboard.</li>\n<li>We enabled <strong>utf8mb4 for MySQL</strong> extension users, which was previously unintentionally limited to MySQLi users. Please let us know if you run into any issues.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=33138&stop_rev=33046\">almost 100 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.3&group=component&order=priority\">everything we’ve fixed</a>.</p>\n<p><em>Edges polished up</em><br />\n<em>Features meliorated</em><br />\n<em>Beta Two: go test!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamps Update\";s: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/news/2015/07/wordcamps-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/07/wordcamps-update/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 16:13: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s: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:\"http://wordpress.org/news/?p=3758\";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:311:\"Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year. There have been 39 WordCamps in 2015 so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9419:\"<p>Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year.</p>\n<p>There have been <a href=\"https://central.wordcamp.org/schedule/past-wordcamps/\">39 WordCamps in 2015</a> so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for WordCamp tickets so far this year, isn’t that amazing?</p>\n<p><a href=\"https://europe.wordcamp.org/2015/\">WordCamp Europe</a> was held in Seville, Spain just a few weeks ago, with close to 1,000 registered participants and over 500 live stream participants. You can watch <a href=\"http://wordpress.tv/2015/07/04/matt-mullenweg-keynote-qanda-wordcamp-europe-2015/\">Matt Mullenweg’s keynote Q&A</a> session from WordCamp Europe right now on WordPress.tv.</p>\n<p>WordPress.tv has published 537 videos so far in 2015 from WordCamps around the world. Some of the more popular 2015 WordCamp talks on WordPress.tv include <a href=\"http://wordpress.tv/2015/03/13/tammie-lister-theme-dont-be-my-everything/\">Tammie Lister: Theme, Don’t Be My Everything </a>from WordCamp Maui, <a href=\"http://wordpress.tv/2015/04/17/jenny-munn-seo-for-2015-whats-in-whats-out-and-how-to-be-in-it-to-win-it-for-good/\">Jenny Munn: SEO for 2015 – What’s In, What’s Out and How to Be In It to Win It (For Good)</a> from WordCamp Atlanta, <a href=\"http://wordpress.tv/2015/02/27/fabrice-ducarme-les-constructeurs-de-page-pour-wordpress/\">Fabrice Ducarme: Les Constructeurs de Page pour WordPress</a> from WordCamp Paris, <a href=\"http://wordpress.tv/2015/06/02/ben-furfie-how-to-value-price-websites/\">Ben Furfie: How to Value Price Websites</a> from WordCamp London, and <a href=\"http://wordpress.tv/2015/06/09/morten-rand-hendriksen-building-themes-from-scratch-using-underscores-_s/\">Morten Rand-Hendriksen: Building Themes From Scratch Using Underscores (_S)</a> from WordCamp Seattle. Check them out!</p>\n<h3>Lots of great WordCamps are still to come</h3>\n<p><a href=\"http://ma.tt/2015/06/wordcamp-us-survey/\">WordCamp US</a> is currently in pre-planning, in the process of deciding on a host city. The following cities have proposed themselves as a great place to host the first WordCamp US: Chattanooga, Chicago, Detroit, Orlando, Philadelphia, and Phoenix. It’s possible the first WordCamp US will be held in 2016 so we can organize the best first WordCamp US imaginable.</p>\n<p>At this time, there are 28 <a href=\"https://central.wordcamp.org/schedule/\">WordCamps</a>, in 9 different countries, that have announced their dates for the rest of 2015. Twelve of these have tickets on sale:</p>\n<ul>\n<li><a href=\"https://columbus.wordcamp.org/2015/\">WordCamp Columbus</a>, Columbus, Ohio: July 17-18</li>\n<li><a href=\"https://scranton.wordcamp.org/2015/\">WordCamp Scranton</a>, Scranton, Pennsylvania: July 18</li>\n<li><a href=\"https://boston.wordcamp.org/2015/\">WordCamp Boston</a>, Boston, Massachussetts: July 18-19</li>\n<li><a href=\"https://milwaukee.wordcamp.org/2015/\">WordCamp Milwaukee</a>, Milwaukee, Wisconsin: July 24-26</li>\n<li><a href=\"https://asheville.wordcamp.org/2015/\">WordCamp Asheville</a>, Asheville, North Carolina: July 24-26</li>\n<li><a href=\"https://kansai.wordcamp.org/2015/\">WordCamp Kansai</a>, Kansai, Japan: July 25-26</li>\n<li><a href=\"https://fayetteville.wordcamp.org/2015/\">WordCamp Fayetteville</a>, Fayetteville, Arkansas: July 31-August 2</li>\n<li><a href=\"https://brighton.buddycamp.org/2015/\">BuddyCamp Brighton</a>, Brighton, UK: August 8</li>\n<li><a href=\"https://vancouver.wordcamp.org/2015/\">WordCamp Vancouver, BC,</a> Vancouver, BC, Canada: August 15-16</li>\n<li><a href=\"https://russia.wordcamp.org/2015/\">WordCamp Russia</a>, Moscow, Russia: August 15</li>\n<li><a href=\"https://norrkoping.wordcamp.org/2015/\">WordCamp Norrköping</a>, Norrköping, Sweden: August 28-29</li>\n<li><a href=\"https://croatia.wordcamp.org/2015/\">WordCamp Croatia</a>, Rijeka, Croatia: September 5-6</li>\n<li><a href=\"https://krakow.wordcamp.org/2015/\">WordCamp Krakow,</a> Krakow, Poland: September 12-13</li>\n<li><a href=\"https://nyc.wordcamp.org/2015/\">WordCamp NYC</a>, New York City, New York: October 30-November 1</li>\n</ul>\n<p>The other 16 events don’t have tickets on sale yet, but they’ve set their dates! Subscribe to the sites to find out when registration opens:</p>\n<ul>\n<li><a href=\"https://pune.wordcamp.org/2015/\">WordCamp Pune</a>, Pune, India: September 6</li>\n<li><a href=\"https://capetown.wordcamp.org/2015/\">WordCamp Cape Town</a>, Cape Town, South Africa: September 10-11</li>\n<li><a href=\"https://baltimore.wordcamp.org/2015/\">WordCamp Baltimore</a>, Baltimore, Maryland: September 12</li>\n<li><a href=\"https://slc.wordcamp.org/2015/\">WordCamp Salt Lake City</a>, Salt Lake City, Utah: September 12</li>\n<li><a href=\"https://lithuania.wordcamp.org/2015/\">WordCamp Lithuania</a>, Vilnius, Lithuania: September 19</li>\n<li><a href=\"https://vegas.wordcamp.org/2015\">WordCamp Vegas</a>, Las Vegas, Nevada: September 19-20</li>\n<li><a href=\"https://switzerland.wordcamp.org/2015/\">WordCamp Switzerland</a>, Zurich, Switzerland: September 19-20</li>\n<li><a href=\"https://tampa.wordcamp.org/2015/\">WordCamp Tampa</a>, Tampa, Florida: September 25-27</li>\n<li><a href=\"https://rhodeisland.wordcamp.org/2015/\">WordCamp Rhode Island</a>, Providence, Rhode Island: September 25-26</li>\n<li><a href=\"https://la.wordcamp.org/2015/\">WordCamp Los Angeles</a>, Los Angeles, California: September 26-27</li>\n<li><a href=\"https://denmark.wordcamp.org/2015/\">WordCamp Denmark,</a> Copenhagen, Denmark: October 3-4</li>\n<li><a href=\"https://toronto.wordcamp.org/2015\">WordCamp Toronto</a>, Toronto, Ontario, Canada: October 3-4</li>\n<li><a href=\"https://hamptonroads.wordcamp.org/2015/\">WordCamp Hampton Roads, </a> Virginia Beach, VA, USA: October 17</li>\n<li><a href=\"https://annarbor.wordcamp.org/2015\">WordCamp Ann Arbor</a>, Ann Arbor, Michigan: October 24</li>\n<li><a href=\"https://portland.wordcamp.org/2015/\">WordCamp Portland</a>, Portland, OR: October 24-25</li>\n</ul>\n<p>On top of all those exciting community events, there are 26 WordCamps in pre-planning as they look for the right event space. If you have a great idea for a free or cheap WordCamp venue in any of the below locations, get in touch with the organizers through the WordCamp sites:</p>\n<ul>\n<li><a href=\"https://dfw.wordcamp.org/2015/\">WordCamp DFW</a>: Dallas/Fort Worth, Texas</li>\n<li><a href=\"https://riodejaneiro.wordcamp.org/2015/\">WordCamp Rio</a>: Rio de Janeiro, Brazil</li>\n<li><a href=\"https://saratoga.wordcamp.org/2015/\">WordCamp Saratoga</a>: Saratoga Springs, New York</li>\n<li><a href=\"https://sofia.wordcamp.org/2015\">WordCamp Sofia</a>: Sofia, Bulgaria</li>\n<li><a href=\"https://austin.wordcamp.org/2015/\">WordCamp Austin</a>: Austin, TX</li>\n<li><a href=\"https://ottawa.wordcamp.org/2015/\">WordCamp Ottawa</a>: Ottawa, Canada</li>\n<li><a href=\"https://charleston.wordcamp.org/2015/\">WordCamp Charleston</a>: Charleston, South Carolina</li>\n<li><a href=\"https://chicago.wordcamp.org/2015/\">WordCamp Chicago</a>: Chicago, Illinois</li>\n<li><a href=\"https://albuquerque.wordcamp.org/2015/\">WordCamp Albuquerque</a>: Albuquerque, New Mexico</li>\n<li><a href=\"https://prague.wordcamp.org/2015/\">WordCamp Prague</a>: Prague, Czech Republic</li>\n<li><a href=\"https://seoul.wordcamp.org/2014/\">WordCamp Seoul: </a>Seoul, South Korea</li>\n<li><a href=\"https://louisville.wordcamp.org/2014/\">WordCamp Louisville</a>: Louisville, Kentucky</li>\n<li><a href=\"https://omaha.wordcamp.org/2015/\">WordCamp Omaha</a>: Omaha, Nebraska</li>\n<li><a href=\"https://grandrapids.wordcamp.org/2015/\">WordCamp Grand Rapids</a>: Grand Rapids, Michigan</li>\n<li><a href=\"https://easttroy.wordcamp.org/2015/\">WordCamp East Troy</a>: East Troy, Wisconsin</li>\n<li><a href=\"https://palmademallorca.wordcamp.org/2015\">WordCamp Mallorca</a>: Palma de Mallorca, Spain</li>\n<li><a href=\"https://edinburgh.wordcamp.org/2015/\">WordCamp Edinburgh</a>: Edinburgh, United Kingdom</li>\n<li><a href=\"https://orlando.wordcamp.org/2015/\">WordCamp Orlando</a>: Orlando, Florida</li>\n<li><a href=\"https://mexico.wordcamp.org/2015/\">WordCamp Mexico City</a>: Mexico City, Mexico</li>\n<li><a href=\"https://netherlands.wordcamp.org/2015/\">WordCamp Netherlands</a>: Utrecht, Netherlands</li>\n<li><a href=\"https://phoenix.wordcamp.org/2016/\">WordCamp Phoenix</a>: Phoenix, Arizona</li>\n<li><a href=\"https://saopaulo.wordcamp.org/2015/\">WordCamp São Paulo</a>: São Paulo, Brazil</li>\n<li><a href=\"https://manchester.wordcamp.org/2015/\">WordCamp Manchester</a>: Manchester, United Kingdom</li>\n<li><a href=\"https://tokyo.wordcamp.org/2015/\">WordCamp Tokyo</a>: Tokyo, Japan</li>\n<li><a href=\"https://lima.wordcamp.org/2015/\">WordCamp Lima</a>: Lima, Peru</li>\n<li><a href=\"https://seattle.wordcamp.org/2015-beginner/\">WordCamp Seattle: Beginner</a>: Seattle, WA</li>\n</ul>\n<p>Don’t see your city on the list, but yearning for a local WordCamp? WordCamps are organized by local volunteers from the WordPress community, and we have a whole team of people to support new organizers setting up a first-time WordCamp. If you want to bring WordCamp to town, check out how you can <a href=\"https://central.wordcamp.org/become-an-organizer/\">become a WordCamp organizer</a>!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2015/07/wordcamps-update/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 01:30: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3738\";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:329:\"WordPress 4.3 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4352:\"<p>WordPress 4.3 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta1.zip\">download the beta here</a> (zip).</p>\n<p>4.3 is due out next month, but to get there, we need your help testing what we’ve been working on:</p>\n<ul>\n<li><strong>Menus</strong> can now be managed with the <strong>Customizer</strong>, which allows you to live preview changes you’re making without changing your site for visitors until you’re ready. We’re especially interested to know if this helps streamline the process of setting up your site (<a href=\"https://core.trac.wordpress.org/ticket/32576\">#32576</a>).</li>\n<li>Take control of another piece of your site with the <strong>Site Icon</strong> feature. You can now manage your site’s favicon and app icon from the admin area (<a href=\"https://core.trac.wordpress.org/ticket/16434\">#16434</a>).</li>\n<li>We put a lot of work into <strong>Better Passwords</strong> throughout WordPress. Now, WordPress will limit the life time of password resets, no longer send passwords via email, and generate and suggest secure passwords for you. Try it out and let us know what you think! (<a href=\"https://core.trac.wordpress.org/ticket/32589\">#32589</a>)</li>\n<li>We’ve also added <strong>Editor Improvements</strong>. Certain text patterns are automatically transformed as you type, including <code>*</code> and <code>-</code> transforming into unordered lists, <code>1.</code> and <code>1)</code> for ordered lists, <code>></code> for blockquotes and two to six number signs (<code>#</code>) for headings (<a href=\"https://core.trac.wordpress.org/ticket/31441\">#31441</a>).</li>\n<li>We’ve improved the <strong>list view</strong> across the admin dashboard. Now, when you view your posts and pages <strong>on small screen devices</strong>, columns are not truncated and can be toggled into view (<a href=\"https://core.trac.wordpress.org/ticket/32395\">#32395</a>).</li>\n</ul>\n<p><strong>Developers</strong>: There have been a few of changes for you to test as well, including:</p>\n<ul>\n<li><strong>Taxonomy Roadmap:</strong> Terms shared across multiple taxonomies will <a href=\"https://make.wordpress.org/core/2015/06/09/eliminating-shared-taxonomy-terms-in-wordpress-4-3/\">now be split</a> into separate terms on update to 4.3. Please let us know if you hit any snags (<a href=\"https://core.trac.wordpress.org/ticket/30261\">#30261</a>).</li>\n<li>Added <code>singular.php</code> to the template hierarchy as a fallback for <code>single.php</code> and <code>page.php</code>. (<a href=\"https://core.trac.wordpress.org/ticket/22314\">#22314</a>).</li>\n<li>The old Distraction Free Writing code was removed (<a href=\"https://core.trac.wordpress.org/ticket/30949\">#30949</a>).</li>\n<li>List tables now can (and often should) have a primary column defined. We’re working on a fallback for existing custom list tables but right now they likely have some breakage in the aforementioned responsive view (<a href=\"https://core.trac.wordpress.org/ticket/25408\">#25408</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.3, <a href=\"https://make.wordpress.org/core/tag/4-3/\">check out all 4.3-tagged posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3\">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Site icons for all</em><br />\n<em>Live preview menu changes</em><br />\n<em>Four three beta now</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 07 Oct 2015 18:08:38 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Thu, 17 Sep 2015 10:36:36 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20150511173052\";}','no'),(30266,'_site_transient_timeout_theme_roots','1444332697','yes'),(30267,'_site_transient_theme_roots','a:17:{s:9:\"blogsonry\";s:7:\"/themes\";s:15:\"business-leader\";s:7:\"/themes\";s:15:\"diversity-style\";s:7:\"/themes\";s:11:\"fpsychology\";s:7:\"/themes\";s:16:\"heatmap-adaptive\";s:7:\"/themes\";s:9:\"lightning\";s:7:\"/themes\";s:6:\"mantra\";s:7:\"/themes\";s:7:\"masonic\";s:7:\"/themes\";s:8:\"mw-small\";s:7:\"/themes\";s:5:\"selma\";s:7:\"/themes\";s:7:\"simpleo\";s:7:\"/themes\";s:15:\"skt-photo-world\";s:7:\"/themes\";s:10:\"stronghold\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:11:\"willingness\";s:7:\"/themes\";}','yes'),(8444,'_transient_masonic_categories','1','yes'),(9096,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:97999942;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(11385,'jetpack_protect_blocked_attempts','306','yes'),(29564,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1444284519','no'),(29190,'_transient_timeout_jpp_li_a02fe9486e0ed1b80a63a0e9da489f3a','1444199094','no'),(29191,'_transient_jpp_li_a02fe9486e0ed1b80a63a0e9da489f3a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (185.101.107.189)\";s:17:\"seconds_remaining\";i:2121;s:16:\"blocked_attempts\";s:3:\"287\";s:6:\"expire\";i:1444199094;}','no'),(29187,'_transient_timeout_jpp_li_435e605c5bdcae380c60dbe313f7df8e','1444200349','no'),(9569,'jetpack_updates','a:7:{s:7:\"plugins\";i:0;s:6:\"themes\";i:0;s:9:\"wordpress\";i:0;s:12:\"translations\";i:0;s:5:\"total\";i:0;s:10:\"wp_version\";s:5:\"4.2.2\";s:26:\"site_is_version_controlled\";b:0;}','yes'),(9064,'jetpack_options','a:10:{s:7:\"version\";s:16:\"3.6.1:1440293561\";s:11:\"old_version\";s:16:\"3.6.1:1440293561\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:-1;s:2:\"id\";i:97999942;s:6:\"public\";i:1;s:9:\"jumpstart\";s:19:\"jumpstart_activated\";s:11:\"master_user\";i:1;s:14:\"last_heartbeat\";i:1444268743;s:20:\"sync_bulk_reindexing\";b:1;}','yes'),(9065,'jetpack_activated','1','yes'),(9066,'jetpack_file_data','a:1:{s:5:\"3.6.1\";a:48:{s:32:\"897a2742e7839607c0023b456ed14758\";a:13:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:89:\"Check your spelling, style, and grammar with the After the Deadline proofreading service.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"c870c79f222cdc3114d210d3a3502a79\";a:13:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:63:\"Transform standard image galleries into full-screen slideshows.\";s:14:\"jumpstart_desc\";s:79:\"brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"5626c5d4355e483f5d4356630646d742\";a:13:{s:4:\"name\";s:16:\"Jetpack Comments\";s:11:\"description\";s:79:\"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";}s:32:\"24c526e6c78dd2c097eee51c33d627ee\";a:13:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:44:\"Insert a contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"be64897c0a578ee6cadb1a459021fbbe\";a:13:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:92:\"Organize and display different types of content on your site, separate from posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"6735e720fe2e3f6f2c48fcaf0fe0a157\";a:13:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:57:\"Customize your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"3abad4b5ddebf37a03f03331b17c1e1b\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"e30ae0161f5ef7955a2e22021602969b\";a:13:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:74:\"Share your public posts and comments to search engines and other services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"e4e461477edd64344126af366b33ae7c\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"1e285572509707836075afa0b7a0d17a\";a:13:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"2a62f28abd5ac11bea3ce7a8e9c4d893\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"fd2cbe6ae10ff814cc269d51b32baad9\";a:13:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:46:\"Add support for infinite scroll to your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"931a7a94c663547c5cb6cc430e98dd30\";a:13:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:69:\"Allow applications to securely access your content through the cloud.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:0:\"\";}s:32:\"dd442dc05f950526d584e15e54628bfb\";a:13:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:85:\"Use LaTeX markup language in posts and pages for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"96f2d1988c22688e9e3d8a8cc5ee1b5b\";a:13:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:70:\"Give visitors an easy way to show their appreciation for your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";}s:32:\"f79ea51a248d9f624e0936ef023cffe1\";a:13:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:76:\"Manage all your sites from a centralized place, https://wordpress.com/sites.\";s:14:\"jumpstart_desc\";s:151:\"helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";}s:32:\"46da83c7358c834dcb193789272f7858\";a:13:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"c189740a3e69c5f42f12a191a15c3dbf\";a:13:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:64:\"Optimize your site with a mobile-friendly theme for smartphones.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"0f9fdc374b00a8d5ca816aac44e6d3f6\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"6f1872535dd77713441708214388213c\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"65f2f0936d11bffe8cd447696054f38e\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"a8ff13dae8129c451116dea8803b23da\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"0a38341a9df2d2cb6f90e4faf65b4d64\";a:13:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:88:\"Receive notifications from Jetpack if your site goes offline — and when it it returns.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"1c8f61fb80e0f6dd697e6d995431161a\";a:13:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:84:\"Receive notification of site activity via the admin toolbar and your Mobile devices.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";}s:32:\"4ca0a2f31843f3b2a4522fa8b9fb18d3\";a:13:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your Dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:0:\"\";}s:32:\"1f1289f469fe089a9ea32024df083f74\";a:13:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:66:\"Accelerate your site by loading images from the WordPress.com CDN.\";s:14:\"jumpstart_desc\";s:141:\"mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";}s:32:\"53eb2f9dfe4e9d9b7203d47ab3a0c58e\";a:13:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:58:\"Publish posts by email, using any device and email client.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"df74d4db35fc795c9bf4b7b2e769116d\";a:13:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:70:\"Adds brute force protection to your login page. Formerly BruteProtect.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"e8b7c9d9b0be70888c41e139c34eb448\";a:13:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:55:\"Share new posts on social media networks automatically.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"04c7eedf95290d03db05e2fc8682a8da\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"f36c13c725ee67f8fbb85d85b4fa8bdb\";a:13:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:60:\"Display links to your related content under posts and pages.\";s:14:\"jumpstart_desc\";s:113:\"keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";}s:32:\"4034d694a22b9864b7d9dbcc291a01f5\";a:13:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:81:\"Allow visitors to share your content on Facebook, Twitter, and more with a click.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";}s:32:\"a260ebaa113e875bbbe59b54cd2475b1\";a:13:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:77:\"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"48e6f4cc58711b5d627931f72a4f55a2\";a:13:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:56:\"Enable WP.me-powered shortlinks for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";}s:32:\"0361b51d6b8957ba15a90c8893085e51\";a:13:{s:4:\"name\";s:9:\"Site Icon\";s:11:\"description\";s:29:\"Add a site icon to your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";}s:32:\"03045ecc30a51f072431bd2f6ccffc37\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"2e89d8cf494aa4cc028023de2662b571\";a:13:{s:4:\"name\";s:22:\"Jetpack Single Sign On\";s:11:\"description\";s:62:\"Allow your users to log in using their WordPress.com accounts.\";s:14:\"jumpstart_desc\";s:97:\"lets you login to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"caf240bf1da3b6f8ec449d7477ac383e\";a:13:{s:4:\"name\";s:19:\"WordPress.com Stats\";s:11:\"description\";s:85:\"Monitor your stats with clear, concise reports and no additional load on your server.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:32:\"WordPress.com Stats, Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"b6ef488128505d6cf819d8a6508a081f\";a:13:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:88:\"Allow users to subscribe to your posts and comments and receive notifications via email.\";s:14:\"jumpstart_desc\";s:126:\"give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"6c0c9cebc91c7aee0de35562fcb8d0b0\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"f354e2a9f6f0823a628e741e7aa88906\";a:13:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:73:\"Display your image galleries in a variety of sleek, graphic arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";}s:32:\"fb806f9c3f633a466076615f99329d22\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"c6908213746b1364a541c3fde961936f\";a:13:{s:4:\"name\";s:10:\"VaultPress\";s:11:\"description\";s:85:\"Protect your site with automatic backups and security scans. (Subscription required.)\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"df97f3fe6750f6490164e710152d5946\";a:13:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:78:\"Verify your site or domain with Google Webmaster Tools, Pinterest, and others.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"5e000fbc427cecaed6e1b8dbf2732462\";a:13:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:68:\"Upload and embed videos right on your site. (Subscription required.)\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";}s:32:\"86f746acdf5d11f8fe753092aec6f619\";a:13:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:57:\"Specify which widgets appear on which pages of your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"b91d486b68701c78e5f2776144c546f4\";a:13:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:79:\"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"98a767d5a9377cc7b8d08fda01d960c0\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}}}','yes'),(1604,'simple_page_sidebars_default_sidebar','','yes'),(1671,'gourlpotcoinprivate_key','','yes'),(1672,'gourlfeathercoinpublic_key','','yes'),(1673,'gourlfeathercoinprivate_key','','yes'),(1674,'gourlvertcoinpublic_key','','yes'),(1675,'gourlvertcoinprivate_key','','yes'),(1676,'gourlvericoinpublic_key','','yes'),(1677,'gourlvericoinprivate_key','','yes'),(1678,'gourlpeercoinpublic_key','','yes'),(1679,'gourlpeercoinprivate_key','','yes'),(1680,'gourlmonetaryunitpublic_key','','yes'),(1681,'gourlmonetaryunitprivate_key','','yes'),(1214,'wp_cart_title','Your Shopping Cart','yes'),(1215,'wp_cart_empty_text','Your cart is empty','yes'),(1216,'cart_return_from_paypal_url','http://thebeloitpod.com/wordpress1/index.php/check-out/','yes'),(1217,'wpspc_send_buyer_email','checked=\"checked\"','yes'),(1218,'wpspc_buyer_from_email','The Beloit Podcast <sales@your-domain.com>','yes'),(1219,'wpspc_buyer_email_subj','Thank you for the purchase','yes'),(1220,'wpspc_buyer_email_body','Dear {first_name} {last_name}\r\n\r\nThank you for your purchase! You ordered the following item(s):\r\n\r\n{product_details}','yes'),(1221,'wpspc_notify_email_address','thebeloitpod@gmail.com','yes'),(1222,'wpspc_seller_email_subj','Notification of product sale','yes'),(1223,'wpspc_seller_email_body','Dear Seller\r\n\r\nThis mail is to notify you of a product sale.\r\n\r\n{product_details}\r\n\r\nThe sale was made to {first_name} {last_name} ({payer_email})\r\n\r\nThanks','yes'),(1224,'wspsc_private_key_one','55c5e7133c77d','yes'),(1230,'wp_shopping_cart_collect_address','','yes'),(1231,'wp_shopping_cart_use_profile_shipping','','yes'),(1232,'cart_paypal_email','thebeloitpod@gmail.com','yes'),(1233,'addToCartButtonName','Add to Cart','yes'),(1234,'cart_products_page_url','http://thebeloitpod.com/wordpress1/index.php/products-2/','yes'),(1235,'wp_shopping_cart_auto_redirect_to_checkout_page','','yes'),(1236,'cart_checkout_page_url','http://thebeloitpod.com/wordpress1/index.php/checkout/','yes'),(1237,'wspsc_open_pp_checkout_in_new_tab','checked=\"checked\"','yes'),(1238,'wp_shopping_cart_reset_after_redirection_to_return_page','','yes'),(1239,'wp_shopping_cart_image_hide','','yes'),(1240,'wp_cart_note_to_seller_text','','yes'),(1241,'wp_cart_paypal_co_page_style','','yes'),(1242,'wp_shopping_cart_strict_email_check','checked=\"checked\"','yes'),(1243,'wp_use_aff_platform','checked=\"checked\"','yes'),(1244,'wp_shopping_cart_enable_sandbox','','yes'),(1245,'wp_shopping_cart_enable_debug','','yes'),(1246,'wpspc_send_seller_email','checked=\"checked\"','yes'),(1247,'wpspsc_coupons_collection','O:25:\"WPSPSC_Coupons_Collection\":1:{s:12:\"coupon_items\";a:1:{i:0;O:18:\"WPSPSC_COUPON_ITEM\":4:{s:2:\"id\";s:13:\"55c5fd33e0b82\";s:11:\"coupon_code\";s:6:\"august\";s:13:\"discount_rate\";s:2:\"90\";s:11:\"expiry_date\";s:10:\"2015-08-31\";}}}','yes'),(1248,'wpspsc_enable_coupon','1','yes'),(1250,'widget_wp_paypal_shopping_cart_widgets','a:2:{i:2;N;s:12:\"_multiwidget\";i:1;}','yes'),(1662,'gourldogecoinpublic_key','','yes'),(1663,'gourldogecoinprivate_key','','yes'),(1664,'gourldashpublic_key','','yes'),(1630,'gourlbox_style','','yes'),(1631,'gourlmessage_border','','yes'),(1632,'gourlmessage_style','','yes'),(1633,'gourllogin_type','','yes'),(1634,'gourlrec_per_page','20','yes'),(1635,'gourlpopup_message','It is a Paid Download ! Please pay below','yes'),(1636,'gourlfile_columns','','yes'),(1637,'gourlchart_reverse','','yes'),(1638,'gourlimg_plogin','0','yes'),(1639,'gourlimg_plogin2','','yes'),(1640,'gourlimg_ploginurl','','yes'),(1641,'gourlimg_flogin','0','yes'),(1642,'gourlimg_flogin2','','yes'),(1643,'gourlimg_floginurl','','yes'),(1644,'gourlimg_sold','0','yes'),(1645,'gourlimg_sold2','','yes'),(1646,'gourlimg_soldurl','','yes'),(1647,'gourlimg_pdisable','0','yes'),(1648,'gourlimg_pdisable2','','yes'),(1649,'gourlimg_pdisableurl','','yes'),(1650,'gourlimg_fdisable','0','yes'),(1651,'gourlimg_fdisable2','','yes'),(1652,'gourlimg_fdisableurl','','yes'),(1653,'gourlimg_nofile','0','yes'),(1654,'gourlimg_nofile2','','yes'),(1655,'gourlimg_nofileurl','','yes'),(1656,'gourlbitcoinpublic_key','2198AAXVHPYBitcoin77BTCPUBqalf2YBcnvJy4FeGtnfihdtv','yes'),(1657,'gourlbitcoinprivate_key','2198AAXVHPYBitcoin77BTCPRVXgHN6Dg9NUbOynJyawA4WHOu','yes'),(1658,'gourllitecoinpublic_key','','yes'),(1659,'gourllitecoinprivate_key','','yes'),(1660,'gourlpaycoinpublic_key','','yes'),(1661,'gourlpaycoinprivate_key','','yes'),(1592,'bbp_new_ui_option','a:3:{i:1;s:1:\"1\";i:2;s:1:\"1\";i:3;s:1:\"1\";}','yes'),(1688,'redux-framework-tracking','a:3:{s:8:\"dev_mode\";b:0;s:4:\"hash\";s:32:\"32fa61c8bb34a1489b89e4efe6aada5f\";s:14:\"allow_tracking\";s:2:\"no\";}','yes'),(1689,'um_version','1.3.15','yes'),(1690,'um_cache_fonticons','a:1212:{i:0;s:13:\"um-icon-alert\";i:1;s:21:\"um-icon-alert-circled\";i:2;s:19:\"um-icon-android-add\";i:3;s:26:\"um-icon-android-add-circle\";i:4;s:27:\"um-icon-android-alarm-clock\";i:5;s:21:\"um-icon-android-alert\";i:6;s:20:\"um-icon-android-apps\";i:7;s:23:\"um-icon-android-archive\";i:8;s:26:\"um-icon-android-arrow-back\";i:9;s:26:\"um-icon-android-arrow-down\";i:10;s:30:\"um-icon-android-arrow-dropdown\";i:11;s:37:\"um-icon-android-arrow-dropdown-circle\";i:12;s:30:\"um-icon-android-arrow-dropleft\";i:13;s:37:\"um-icon-android-arrow-dropleft-circle\";i:14;s:31:\"um-icon-android-arrow-dropright\";i:15;s:38:\"um-icon-android-arrow-dropright-circle\";i:16;s:28:\"um-icon-android-arrow-dropup\";i:17;s:35:\"um-icon-android-arrow-dropup-circle\";i:18;s:29:\"um-icon-android-arrow-forward\";i:19;s:24:\"um-icon-android-arrow-up\";i:20;s:22:\"um-icon-android-attach\";i:21;s:19:\"um-icon-android-bar\";i:22;s:23:\"um-icon-android-bicycle\";i:23;s:20:\"um-icon-android-boat\";i:24;s:24:\"um-icon-android-bookmark\";i:25;s:20:\"um-icon-android-bulb\";i:26;s:19:\"um-icon-android-bus\";i:27;s:24:\"um-icon-android-calendar\";i:28;s:20:\"um-icon-android-call\";i:29;s:22:\"um-icon-android-camera\";i:30;s:22:\"um-icon-android-cancel\";i:31;s:19:\"um-icon-android-car\";i:32;s:20:\"um-icon-android-cart\";i:33;s:20:\"um-icon-android-chat\";i:34;s:24:\"um-icon-android-checkbox\";i:35;s:30:\"um-icon-android-checkbox-blank\";i:36;s:32:\"um-icon-android-checkbox-outline\";i:37;s:38:\"um-icon-android-checkbox-outline-blank\";i:38;s:32:\"um-icon-android-checkmark-circle\";i:39;s:25:\"um-icon-android-clipboard\";i:40;s:21:\"um-icon-android-close\";i:41;s:21:\"um-icon-android-cloud\";i:42;s:28:\"um-icon-android-cloud-circle\";i:43;s:26:\"um-icon-android-cloud-done\";i:44;s:29:\"um-icon-android-cloud-outline\";i:45;s:29:\"um-icon-android-color-palette\";i:46;s:23:\"um-icon-android-compass\";i:47;s:23:\"um-icon-android-contact\";i:48;s:24:\"um-icon-android-contacts\";i:49;s:24:\"um-icon-android-contract\";i:50;s:22:\"um-icon-android-create\";i:51;s:22:\"um-icon-android-delete\";i:52;s:23:\"um-icon-android-desktop\";i:53;s:24:\"um-icon-android-document\";i:54;s:20:\"um-icon-android-done\";i:55;s:24:\"um-icon-android-done-all\";i:56;s:24:\"um-icon-android-download\";i:57;s:22:\"um-icon-android-drafts\";i:58;s:20:\"um-icon-android-exit\";i:59;s:22:\"um-icon-android-expand\";i:60;s:24:\"um-icon-android-favorite\";i:61;s:32:\"um-icon-android-favorite-outline\";i:62;s:20:\"um-icon-android-film\";i:63;s:22:\"um-icon-android-folder\";i:64;s:27:\"um-icon-android-folder-open\";i:65;s:22:\"um-icon-android-funnel\";i:66;s:21:\"um-icon-android-globe\";i:67;s:20:\"um-icon-android-hand\";i:68;s:23:\"um-icon-android-hangout\";i:69;s:21:\"um-icon-android-happy\";i:70;s:20:\"um-icon-android-home\";i:71;s:21:\"um-icon-android-image\";i:72;s:22:\"um-icon-android-laptop\";i:73;s:20:\"um-icon-android-list\";i:74;s:22:\"um-icon-android-locate\";i:75;s:20:\"um-icon-android-lock\";i:76;s:20:\"um-icon-android-mail\";i:77;s:19:\"um-icon-android-map\";i:78;s:20:\"um-icon-android-menu\";i:79;s:26:\"um-icon-android-microphone\";i:80;s:30:\"um-icon-android-microphone-off\";i:81;s:31:\"um-icon-android-more-horizontal\";i:82;s:29:\"um-icon-android-more-vertical\";i:83;s:24:\"um-icon-android-navigate\";i:84;s:29:\"um-icon-android-notifications\";i:85;s:34:\"um-icon-android-notifications-none\";i:86;s:33:\"um-icon-android-notifications-off\";i:87;s:20:\"um-icon-android-open\";i:88;s:23:\"um-icon-android-options\";i:89;s:22:\"um-icon-android-people\";i:90;s:22:\"um-icon-android-person\";i:91;s:26:\"um-icon-android-person-add\";i:92;s:31:\"um-icon-android-phone-landscape\";i:93;s:30:\"um-icon-android-phone-portrait\";i:94;s:19:\"um-icon-android-pin\";i:95;s:21:\"um-icon-android-plane\";i:96;s:25:\"um-icon-android-playstore\";i:97;s:21:\"um-icon-android-print\";i:98;s:32:\"um-icon-android-radio-button-off\";i:99;s:31:\"um-icon-android-radio-button-on\";i:100;s:23:\"um-icon-android-refresh\";i:101;s:22:\"um-icon-android-remove\";i:102;s:29:\"um-icon-android-remove-circle\";i:103;s:26:\"um-icon-android-restaurant\";i:104;s:19:\"um-icon-android-sad\";i:105;s:22:\"um-icon-android-search\";i:106;s:20:\"um-icon-android-send\";i:107;s:24:\"um-icon-android-settings\";i:108;s:21:\"um-icon-android-share\";i:109;s:25:\"um-icon-android-share-alt\";i:110;s:20:\"um-icon-android-star\";i:111;s:25:\"um-icon-android-star-half\";i:112;s:28:\"um-icon-android-star-outline\";i:113;s:25:\"um-icon-android-stopwatch\";i:114;s:22:\"um-icon-android-subway\";i:115;s:21:\"um-icon-android-sunny\";i:116;s:20:\"um-icon-android-sync\";i:117;s:23:\"um-icon-android-textsms\";i:118;s:20:\"um-icon-android-time\";i:119;s:21:\"um-icon-android-train\";i:120;s:22:\"um-icon-android-unlock\";i:121;s:22:\"um-icon-android-upload\";i:122;s:27:\"um-icon-android-volume-down\";i:123;s:27:\"um-icon-android-volume-mute\";i:124;s:26:\"um-icon-android-volume-off\";i:125;s:25:\"um-icon-android-volume-up\";i:126;s:20:\"um-icon-android-walk\";i:127;s:23:\"um-icon-android-warning\";i:128;s:21:\"um-icon-android-watch\";i:129;s:20:\"um-icon-android-wifi\";i:130;s:16:\"um-icon-aperture\";i:131;s:15:\"um-icon-archive\";i:132;s:20:\"um-icon-arrow-down-a\";i:133;s:20:\"um-icon-arrow-down-b\";i:134;s:20:\"um-icon-arrow-down-c\";i:135;s:20:\"um-icon-arrow-expand\";i:136;s:29:\"um-icon-arrow-graph-down-left\";i:137;s:30:\"um-icon-arrow-graph-down-right\";i:138;s:27:\"um-icon-arrow-graph-up-left\";i:139;s:28:\"um-icon-arrow-graph-up-right\";i:140;s:20:\"um-icon-arrow-left-a\";i:141;s:20:\"um-icon-arrow-left-b\";i:142;s:20:\"um-icon-arrow-left-c\";i:143;s:18:\"um-icon-arrow-move\";i:144;s:20:\"um-icon-arrow-resize\";i:145;s:25:\"um-icon-arrow-return-left\";i:146;s:26:\"um-icon-arrow-return-right\";i:147;s:21:\"um-icon-arrow-right-a\";i:148;s:21:\"um-icon-arrow-right-b\";i:149;s:21:\"um-icon-arrow-right-c\";i:150;s:20:\"um-icon-arrow-shrink\";i:151;s:18:\"um-icon-arrow-swap\";i:152;s:18:\"um-icon-arrow-up-a\";i:153;s:18:\"um-icon-arrow-up-b\";i:154;s:18:\"um-icon-arrow-up-c\";i:155;s:16:\"um-icon-asterisk\";i:156;s:10:\"um-icon-at\";i:157;s:17:\"um-icon-backspace\";i:158;s:25:\"um-icon-backspace-outline\";i:159;s:11:\"um-icon-bag\";i:160;s:24:\"um-icon-battery-charging\";i:161;s:21:\"um-icon-battery-empty\";i:162;s:20:\"um-icon-battery-full\";i:163;s:20:\"um-icon-battery-half\";i:164;s:19:\"um-icon-battery-low\";i:165;s:14:\"um-icon-beaker\";i:166;s:12:\"um-icon-beer\";i:167;s:17:\"um-icon-bluetooth\";i:168;s:15:\"um-icon-bonfire\";i:169;s:16:\"um-icon-bookmark\";i:170;s:14:\"um-icon-bowtie\";i:171;s:17:\"um-icon-briefcase\";i:172;s:11:\"um-icon-bug\";i:173;s:18:\"um-icon-calculator\";i:174;s:16:\"um-icon-calendar\";i:175;s:14:\"um-icon-camera\";i:176;s:12:\"um-icon-card\";i:177;s:12:\"um-icon-cash\";i:178;s:15:\"um-icon-chatbox\";i:179;s:23:\"um-icon-chatbox-working\";i:180;s:17:\"um-icon-chatboxes\";i:181;s:18:\"um-icon-chatbubble\";i:182;s:26:\"um-icon-chatbubble-working\";i:183;s:19:\"um-icon-chatbubbles\";i:184;s:17:\"um-icon-checkmark\";i:185;s:25:\"um-icon-checkmark-circled\";i:186;s:23:\"um-icon-checkmark-round\";i:187;s:20:\"um-icon-chevron-down\";i:188;s:20:\"um-icon-chevron-left\";i:189;s:21:\"um-icon-chevron-right\";i:190;s:18:\"um-icon-chevron-up\";i:191;s:17:\"um-icon-clipboard\";i:192;s:13:\"um-icon-clock\";i:193;s:13:\"um-icon-close\";i:194;s:21:\"um-icon-close-circled\";i:195;s:19:\"um-icon-close-round\";i:196;s:25:\"um-icon-closed-captioning\";i:197;s:13:\"um-icon-cloud\";i:198;s:12:\"um-icon-code\";i:199;s:21:\"um-icon-code-download\";i:200;s:20:\"um-icon-code-working\";i:201;s:14:\"um-icon-coffee\";i:202;s:15:\"um-icon-compass\";i:203;s:15:\"um-icon-compose\";i:204;s:23:\"um-icon-connection-bars\";i:205;s:16:\"um-icon-contrast\";i:206;s:12:\"um-icon-crop\";i:207;s:12:\"um-icon-cube\";i:208;s:12:\"um-icon-disc\";i:209;s:16:\"um-icon-document\";i:210;s:21:\"um-icon-document-text\";i:211;s:12:\"um-icon-drag\";i:212;s:13:\"um-icon-earth\";i:213;s:13:\"um-icon-easel\";i:214;s:12:\"um-icon-edit\";i:215;s:11:\"um-icon-egg\";i:216;s:13:\"um-icon-eject\";i:217;s:13:\"um-icon-email\";i:218;s:20:\"um-icon-email-unread\";i:219;s:24:\"um-icon-erlenmeyer-flask\";i:220;s:32:\"um-icon-erlenmeyer-flask-bubbles\";i:221;s:11:\"um-icon-eye\";i:222;s:20:\"um-icon-eye-disabled\";i:223;s:14:\"um-icon-female\";i:224;s:14:\"um-icon-filing\";i:225;s:19:\"um-icon-film-marker\";i:226;s:16:\"um-icon-fireball\";i:227;s:12:\"um-icon-flag\";i:228;s:13:\"um-icon-flame\";i:229;s:13:\"um-icon-flash\";i:230;s:17:\"um-icon-flash-off\";i:231;s:14:\"um-icon-folder\";i:232;s:12:\"um-icon-fork\";i:233;s:17:\"um-icon-fork-repo\";i:234;s:15:\"um-icon-forward\";i:235;s:14:\"um-icon-funnel\";i:236;s:14:\"um-icon-gear-a\";i:237;s:14:\"um-icon-gear-b\";i:238;s:12:\"um-icon-grid\";i:239;s:14:\"um-icon-hammer\";i:240;s:13:\"um-icon-happy\";i:241;s:21:\"um-icon-happy-outline\";i:242;s:17:\"um-icon-headphone\";i:243;s:13:\"um-icon-heart\";i:244;s:20:\"um-icon-heart-broken\";i:245;s:12:\"um-icon-help\";i:246;s:17:\"um-icon-help-buoy\";i:247;s:20:\"um-icon-help-circled\";i:248;s:12:\"um-icon-home\";i:249;s:16:\"um-icon-icecream\";i:250;s:13:\"um-icon-image\";i:251;s:14:\"um-icon-images\";i:252;s:19:\"um-icon-information\";i:253;s:27:\"um-icon-information-circled\";i:254;s:13:\"um-icon-ionic\";i:255;s:17:\"um-icon-ios-alarm\";i:256;s:25:\"um-icon-ios-alarm-outline\";i:257;s:18:\"um-icon-ios-albums\";i:258;s:26:\"um-icon-ios-albums-outline\";i:259;s:28:\"um-icon-ios-americanfootball\";i:260;s:36:\"um-icon-ios-americanfootball-outline\";i:261;s:21:\"um-icon-ios-analytics\";i:262;s:29:\"um-icon-ios-analytics-outline\";i:263;s:22:\"um-icon-ios-arrow-back\";i:264;s:22:\"um-icon-ios-arrow-down\";i:265;s:25:\"um-icon-ios-arrow-forward\";i:266;s:22:\"um-icon-ios-arrow-left\";i:267;s:23:\"um-icon-ios-arrow-right\";i:268;s:27:\"um-icon-ios-arrow-thin-down\";i:269;s:27:\"um-icon-ios-arrow-thin-left\";i:270;s:28:\"um-icon-ios-arrow-thin-right\";i:271;s:25:\"um-icon-ios-arrow-thin-up\";i:272;s:20:\"um-icon-ios-arrow-up\";i:273;s:14:\"um-icon-ios-at\";i:274;s:22:\"um-icon-ios-at-outline\";i:275;s:19:\"um-icon-ios-barcode\";i:276;s:27:\"um-icon-ios-barcode-outline\";i:277;s:20:\"um-icon-ios-baseball\";i:278;s:28:\"um-icon-ios-baseball-outline\";i:279;s:22:\"um-icon-ios-basketball\";i:280;s:30:\"um-icon-ios-basketball-outline\";i:281;s:16:\"um-icon-ios-bell\";i:282;s:24:\"um-icon-ios-bell-outline\";i:283;s:16:\"um-icon-ios-body\";i:284;s:24:\"um-icon-ios-body-outline\";i:285;s:16:\"um-icon-ios-bolt\";i:286;s:24:\"um-icon-ios-bolt-outline\";i:287;s:16:\"um-icon-ios-book\";i:288;s:24:\"um-icon-ios-book-outline\";i:289;s:21:\"um-icon-ios-bookmarks\";i:290;s:29:\"um-icon-ios-bookmarks-outline\";i:291;s:15:\"um-icon-ios-box\";i:292;s:23:\"um-icon-ios-box-outline\";i:293;s:21:\"um-icon-ios-briefcase\";i:294;s:29:\"um-icon-ios-briefcase-outline\";i:295;s:20:\"um-icon-ios-browsers\";i:296;s:28:\"um-icon-ios-browsers-outline\";i:297;s:22:\"um-icon-ios-calculator\";i:298;s:30:\"um-icon-ios-calculator-outline\";i:299;s:20:\"um-icon-ios-calendar\";i:300;s:28:\"um-icon-ios-calendar-outline\";i:301;s:18:\"um-icon-ios-camera\";i:302;s:26:\"um-icon-ios-camera-outline\";i:303;s:16:\"um-icon-ios-cart\";i:304;s:24:\"um-icon-ios-cart-outline\";i:305;s:21:\"um-icon-ios-chatboxes\";i:306;s:29:\"um-icon-ios-chatboxes-outline\";i:307;s:22:\"um-icon-ios-chatbubble\";i:308;s:30:\"um-icon-ios-chatbubble-outline\";i:309;s:21:\"um-icon-ios-checkmark\";i:310;s:27:\"um-icon-ios-checkmark-empty\";i:311;s:29:\"um-icon-ios-checkmark-outline\";i:312;s:25:\"um-icon-ios-circle-filled\";i:313;s:26:\"um-icon-ios-circle-outline\";i:314;s:17:\"um-icon-ios-clock\";i:315;s:25:\"um-icon-ios-clock-outline\";i:316;s:17:\"um-icon-ios-close\";i:317;s:23:\"um-icon-ios-close-empty\";i:318;s:25:\"um-icon-ios-close-outline\";i:319;s:17:\"um-icon-ios-cloud\";i:320;s:26:\"um-icon-ios-cloud-download\";i:321;s:34:\"um-icon-ios-cloud-download-outline\";i:322;s:25:\"um-icon-ios-cloud-outline\";i:323;s:24:\"um-icon-ios-cloud-upload\";i:324;s:32:\"um-icon-ios-cloud-upload-outline\";i:325;s:18:\"um-icon-ios-cloudy\";i:326;s:24:\"um-icon-ios-cloudy-night\";i:327;s:32:\"um-icon-ios-cloudy-night-outline\";i:328;s:26:\"um-icon-ios-cloudy-outline\";i:329;s:15:\"um-icon-ios-cog\";i:330;s:23:\"um-icon-ios-cog-outline\";i:331;s:24:\"um-icon-ios-color-filter\";i:332;s:32:\"um-icon-ios-color-filter-outline\";i:333;s:22:\"um-icon-ios-color-wand\";i:334;s:30:\"um-icon-ios-color-wand-outline\";i:335;s:19:\"um-icon-ios-compose\";i:336;s:27:\"um-icon-ios-compose-outline\";i:337;s:19:\"um-icon-ios-contact\";i:338;s:27:\"um-icon-ios-contact-outline\";i:339;s:16:\"um-icon-ios-copy\";i:340;s:24:\"um-icon-ios-copy-outline\";i:341;s:16:\"um-icon-ios-crop\";i:342;s:23:\"um-icon-ios-crop-strong\";i:343;s:20:\"um-icon-ios-download\";i:344;s:28:\"um-icon-ios-download-outline\";i:345;s:16:\"um-icon-ios-drag\";i:346;s:17:\"um-icon-ios-email\";i:347;s:25:\"um-icon-ios-email-outline\";i:348;s:15:\"um-icon-ios-eye\";i:349;s:23:\"um-icon-ios-eye-outline\";i:350;s:23:\"um-icon-ios-fastforward\";i:351;s:31:\"um-icon-ios-fastforward-outline\";i:352;s:18:\"um-icon-ios-filing\";i:353;s:26:\"um-icon-ios-filing-outline\";i:354;s:16:\"um-icon-ios-film\";i:355;s:24:\"um-icon-ios-film-outline\";i:356;s:16:\"um-icon-ios-flag\";i:357;s:24:\"um-icon-ios-flag-outline\";i:358;s:17:\"um-icon-ios-flame\";i:359;s:25:\"um-icon-ios-flame-outline\";i:360;s:17:\"um-icon-ios-flask\";i:361;s:25:\"um-icon-ios-flask-outline\";i:362;s:18:\"um-icon-ios-flower\";i:363;s:26:\"um-icon-ios-flower-outline\";i:364;s:18:\"um-icon-ios-folder\";i:365;s:26:\"um-icon-ios-folder-outline\";i:366;s:20:\"um-icon-ios-football\";i:367;s:28:\"um-icon-ios-football-outline\";i:368;s:29:\"um-icon-ios-game-controller-a\";i:369;s:37:\"um-icon-ios-game-controller-a-outline\";i:370;s:29:\"um-icon-ios-game-controller-b\";i:371;s:37:\"um-icon-ios-game-controller-b-outline\";i:372;s:16:\"um-icon-ios-gear\";i:373;s:24:\"um-icon-ios-gear-outline\";i:374;s:19:\"um-icon-ios-glasses\";i:375;s:27:\"um-icon-ios-glasses-outline\";i:376;s:21:\"um-icon-ios-grid-view\";i:377;s:29:\"um-icon-ios-grid-view-outline\";i:378;s:17:\"um-icon-ios-heart\";i:379;s:25:\"um-icon-ios-heart-outline\";i:380;s:16:\"um-icon-ios-help\";i:381;s:22:\"um-icon-ios-help-empty\";i:382;s:24:\"um-icon-ios-help-outline\";i:383;s:16:\"um-icon-ios-home\";i:384;s:24:\"um-icon-ios-home-outline\";i:385;s:20:\"um-icon-ios-infinite\";i:386;s:28:\"um-icon-ios-infinite-outline\";i:387;s:23:\"um-icon-ios-information\";i:388;s:29:\"um-icon-ios-information-empty\";i:389;s:31:\"um-icon-ios-information-outline\";i:390;s:25:\"um-icon-ios-ionic-outline\";i:391;s:18:\"um-icon-ios-keypad\";i:392;s:26:\"um-icon-ios-keypad-outline\";i:393;s:21:\"um-icon-ios-lightbulb\";i:394;s:29:\"um-icon-ios-lightbulb-outline\";i:395;s:16:\"um-icon-ios-list\";i:396;s:24:\"um-icon-ios-list-outline\";i:397;s:20:\"um-icon-ios-location\";i:398;s:28:\"um-icon-ios-location-outline\";i:399;s:18:\"um-icon-ios-locked\";i:400;s:26:\"um-icon-ios-locked-outline\";i:401;s:16:\"um-icon-ios-loop\";i:402;s:23:\"um-icon-ios-loop-strong\";i:403;s:19:\"um-icon-ios-medical\";i:404;s:27:\"um-icon-ios-medical-outline\";i:405;s:18:\"um-icon-ios-medkit\";i:406;s:26:\"um-icon-ios-medkit-outline\";i:407;s:15:\"um-icon-ios-mic\";i:408;s:19:\"um-icon-ios-mic-off\";i:409;s:23:\"um-icon-ios-mic-outline\";i:410;s:17:\"um-icon-ios-minus\";i:411;s:23:\"um-icon-ios-minus-empty\";i:412;s:25:\"um-icon-ios-minus-outline\";i:413;s:19:\"um-icon-ios-monitor\";i:414;s:27:\"um-icon-ios-monitor-outline\";i:415;s:16:\"um-icon-ios-moon\";i:416;s:24:\"um-icon-ios-moon-outline\";i:417;s:16:\"um-icon-ios-more\";i:418;s:24:\"um-icon-ios-more-outline\";i:419;s:24:\"um-icon-ios-musical-note\";i:420;s:25:\"um-icon-ios-musical-notes\";i:421;s:20:\"um-icon-ios-navigate\";i:422;s:28:\"um-icon-ios-navigate-outline\";i:423;s:21:\"um-icon-ios-nutrition\";i:424;s:29:\"um-icon-ios-nutrition-outline\";i:425;s:17:\"um-icon-ios-paper\";i:426;s:25:\"um-icon-ios-paper-outline\";i:427;s:22:\"um-icon-ios-paperplane\";i:428;s:30:\"um-icon-ios-paperplane-outline\";i:429;s:23:\"um-icon-ios-partlysunny\";i:430;s:31:\"um-icon-ios-partlysunny-outline\";i:431;s:17:\"um-icon-ios-pause\";i:432;s:25:\"um-icon-ios-pause-outline\";i:433;s:15:\"um-icon-ios-paw\";i:434;s:23:\"um-icon-ios-paw-outline\";i:435;s:18:\"um-icon-ios-people\";i:436;s:26:\"um-icon-ios-people-outline\";i:437;s:18:\"um-icon-ios-person\";i:438;s:26:\"um-icon-ios-person-outline\";i:439;s:21:\"um-icon-ios-personadd\";i:440;s:29:\"um-icon-ios-personadd-outline\";i:441;s:18:\"um-icon-ios-photos\";i:442;s:26:\"um-icon-ios-photos-outline\";i:443;s:15:\"um-icon-ios-pie\";i:444;s:23:\"um-icon-ios-pie-outline\";i:445;s:16:\"um-icon-ios-pint\";i:446;s:24:\"um-icon-ios-pint-outline\";i:447;s:16:\"um-icon-ios-play\";i:448;s:24:\"um-icon-ios-play-outline\";i:449;s:16:\"um-icon-ios-plus\";i:450;s:22:\"um-icon-ios-plus-empty\";i:451;s:24:\"um-icon-ios-plus-outline\";i:452;s:20:\"um-icon-ios-pricetag\";i:453;s:28:\"um-icon-ios-pricetag-outline\";i:454;s:21:\"um-icon-ios-pricetags\";i:455;s:29:\"um-icon-ios-pricetags-outline\";i:456;s:19:\"um-icon-ios-printer\";i:457;s:27:\"um-icon-ios-printer-outline\";i:458;s:17:\"um-icon-ios-pulse\";i:459;s:24:\"um-icon-ios-pulse-strong\";i:460;s:17:\"um-icon-ios-rainy\";i:461;s:25:\"um-icon-ios-rainy-outline\";i:462;s:21:\"um-icon-ios-recording\";i:463;s:29:\"um-icon-ios-recording-outline\";i:464;s:16:\"um-icon-ios-redo\";i:465;s:24:\"um-icon-ios-redo-outline\";i:466;s:19:\"um-icon-ios-refresh\";i:467;s:25:\"um-icon-ios-refresh-empty\";i:468;s:27:\"um-icon-ios-refresh-outline\";i:469;s:18:\"um-icon-ios-reload\";i:470;s:26:\"um-icon-ios-reverse-camera\";i:471;s:34:\"um-icon-ios-reverse-camera-outline\";i:472;s:18:\"um-icon-ios-rewind\";i:473;s:26:\"um-icon-ios-rewind-outline\";i:474;s:16:\"um-icon-ios-rose\";i:475;s:24:\"um-icon-ios-rose-outline\";i:476;s:18:\"um-icon-ios-search\";i:477;s:25:\"um-icon-ios-search-strong\";i:478;s:20:\"um-icon-ios-settings\";i:479;s:27:\"um-icon-ios-settings-strong\";i:480;s:19:\"um-icon-ios-shuffle\";i:481;s:26:\"um-icon-ios-shuffle-strong\";i:482;s:24:\"um-icon-ios-skipbackward\";i:483;s:32:\"um-icon-ios-skipbackward-outline\";i:484;s:23:\"um-icon-ios-skipforward\";i:485;s:31:\"um-icon-ios-skipforward-outline\";i:486;s:17:\"um-icon-ios-snowy\";i:487;s:23:\"um-icon-ios-speedometer\";i:488;s:31:\"um-icon-ios-speedometer-outline\";i:489;s:16:\"um-icon-ios-star\";i:490;s:21:\"um-icon-ios-star-half\";i:491;s:24:\"um-icon-ios-star-outline\";i:492;s:21:\"um-icon-ios-stopwatch\";i:493;s:29:\"um-icon-ios-stopwatch-outline\";i:494;s:17:\"um-icon-ios-sunny\";i:495;s:25:\"um-icon-ios-sunny-outline\";i:496;s:21:\"um-icon-ios-telephone\";i:497;s:29:\"um-icon-ios-telephone-outline\";i:498;s:22:\"um-icon-ios-tennisball\";i:499;s:30:\"um-icon-ios-tennisball-outline\";i:500;s:24:\"um-icon-ios-thunderstorm\";i:501;s:32:\"um-icon-ios-thunderstorm-outline\";i:502;s:16:\"um-icon-ios-time\";i:503;s:24:\"um-icon-ios-time-outline\";i:504;s:17:\"um-icon-ios-timer\";i:505;s:25:\"um-icon-ios-timer-outline\";i:506;s:18:\"um-icon-ios-toggle\";i:507;s:26:\"um-icon-ios-toggle-outline\";i:508;s:17:\"um-icon-ios-trash\";i:509;s:25:\"um-icon-ios-trash-outline\";i:510;s:16:\"um-icon-ios-undo\";i:511;s:24:\"um-icon-ios-undo-outline\";i:512;s:20:\"um-icon-ios-unlocked\";i:513;s:28:\"um-icon-ios-unlocked-outline\";i:514;s:18:\"um-icon-ios-upload\";i:515;s:26:\"um-icon-ios-upload-outline\";i:516;s:20:\"um-icon-ios-videocam\";i:517;s:28:\"um-icon-ios-videocam-outline\";i:518;s:23:\"um-icon-ios-volume-high\";i:519;s:22:\"um-icon-ios-volume-low\";i:520;s:21:\"um-icon-ios-wineglass\";i:521;s:29:\"um-icon-ios-wineglass-outline\";i:522;s:17:\"um-icon-ios-world\";i:523;s:25:\"um-icon-ios-world-outline\";i:524;s:12:\"um-icon-ipad\";i:525;s:14:\"um-icon-iphone\";i:526;s:12:\"um-icon-ipod\";i:527;s:11:\"um-icon-jet\";i:528;s:11:\"um-icon-key\";i:529;s:13:\"um-icon-knife\";i:530;s:14:\"um-icon-laptop\";i:531;s:12:\"um-icon-leaf\";i:532;s:14:\"um-icon-levels\";i:533;s:17:\"um-icon-lightbulb\";i:534;s:12:\"um-icon-link\";i:535;s:14:\"um-icon-load-a\";i:536;s:14:\"um-icon-load-b\";i:537;s:14:\"um-icon-load-c\";i:538;s:14:\"um-icon-load-d\";i:539;s:16:\"um-icon-location\";i:540;s:24:\"um-icon-lock-combination\";i:541;s:14:\"um-icon-locked\";i:542;s:14:\"um-icon-log-in\";i:543;s:15:\"um-icon-log-out\";i:544;s:12:\"um-icon-loop\";i:545;s:14:\"um-icon-magnet\";i:546;s:12:\"um-icon-male\";i:547;s:11:\"um-icon-man\";i:548;s:11:\"um-icon-map\";i:549;s:14:\"um-icon-medkit\";i:550;s:13:\"um-icon-merge\";i:551;s:13:\"um-icon-mic-a\";i:552;s:13:\"um-icon-mic-b\";i:553;s:13:\"um-icon-mic-c\";i:554;s:13:\"um-icon-minus\";i:555;s:21:\"um-icon-minus-circled\";i:556;s:19:\"um-icon-minus-round\";i:557;s:15:\"um-icon-model-s\";i:558;s:15:\"um-icon-monitor\";i:559;s:12:\"um-icon-more\";i:560;s:13:\"um-icon-mouse\";i:561;s:18:\"um-icon-music-note\";i:562;s:15:\"um-icon-navicon\";i:563;s:21:\"um-icon-navicon-round\";i:564;s:16:\"um-icon-navigate\";i:565;s:15:\"um-icon-network\";i:566;s:18:\"um-icon-no-smoking\";i:567;s:15:\"um-icon-nuclear\";i:568;s:14:\"um-icon-outlet\";i:569;s:18:\"um-icon-paintbrush\";i:570;s:19:\"um-icon-paintbucket\";i:571;s:22:\"um-icon-paper-airplane\";i:572;s:17:\"um-icon-paperclip\";i:573;s:13:\"um-icon-pause\";i:574;s:14:\"um-icon-person\";i:575;s:18:\"um-icon-person-add\";i:576;s:22:\"um-icon-person-stalker\";i:577;s:17:\"um-icon-pie-graph\";i:578;s:11:\"um-icon-pin\";i:579;s:16:\"um-icon-pinpoint\";i:580;s:13:\"um-icon-pizza\";i:581;s:13:\"um-icon-plane\";i:582;s:14:\"um-icon-planet\";i:583;s:12:\"um-icon-play\";i:584;s:19:\"um-icon-playstation\";i:585;s:12:\"um-icon-plus\";i:586;s:20:\"um-icon-plus-circled\";i:587;s:18:\"um-icon-plus-round\";i:588;s:14:\"um-icon-podium\";i:589;s:13:\"um-icon-pound\";i:590;s:13:\"um-icon-power\";i:591;s:16:\"um-icon-pricetag\";i:592;s:17:\"um-icon-pricetags\";i:593;s:15:\"um-icon-printer\";i:594;s:20:\"um-icon-pull-request\";i:595;s:18:\"um-icon-qr-scanner\";i:596;s:13:\"um-icon-quote\";i:597;s:19:\"um-icon-radio-waves\";i:598;s:14:\"um-icon-record\";i:599;s:15:\"um-icon-refresh\";i:600;s:13:\"um-icon-reply\";i:601;s:17:\"um-icon-reply-all\";i:602;s:16:\"um-icon-ribbon-a\";i:603;s:16:\"um-icon-ribbon-b\";i:604;s:11:\"um-icon-sad\";i:605;s:19:\"um-icon-sad-outline\";i:606;s:16:\"um-icon-scissors\";i:607;s:14:\"um-icon-search\";i:608;s:16:\"um-icon-settings\";i:609;s:13:\"um-icon-share\";i:610;s:15:\"um-icon-shuffle\";i:611;s:21:\"um-icon-skip-backward\";i:612;s:20:\"um-icon-skip-forward\";i:613;s:22:\"um-icon-social-android\";i:614;s:30:\"um-icon-social-android-outline\";i:615;s:22:\"um-icon-social-angular\";i:616;s:30:\"um-icon-social-angular-outline\";i:617;s:20:\"um-icon-social-apple\";i:618;s:28:\"um-icon-social-apple-outline\";i:619;s:22:\"um-icon-social-bitcoin\";i:620;s:30:\"um-icon-social-bitcoin-outline\";i:621;s:21:\"um-icon-social-buffer\";i:622;s:29:\"um-icon-social-buffer-outline\";i:623;s:21:\"um-icon-social-chrome\";i:624;s:29:\"um-icon-social-chrome-outline\";i:625;s:22:\"um-icon-social-codepen\";i:626;s:30:\"um-icon-social-codepen-outline\";i:627;s:19:\"um-icon-social-css3\";i:628;s:27:\"um-icon-social-css3-outline\";i:629;s:27:\"um-icon-social-designernews\";i:630;s:35:\"um-icon-social-designernews-outline\";i:631;s:23:\"um-icon-social-dribbble\";i:632;s:31:\"um-icon-social-dribbble-outline\";i:633;s:22:\"um-icon-social-dropbox\";i:634;s:30:\"um-icon-social-dropbox-outline\";i:635;s:19:\"um-icon-social-euro\";i:636;s:27:\"um-icon-social-euro-outline\";i:637;s:23:\"um-icon-social-facebook\";i:638;s:31:\"um-icon-social-facebook-outline\";i:639;s:25:\"um-icon-social-foursquare\";i:640;s:33:\"um-icon-social-foursquare-outline\";i:641;s:28:\"um-icon-social-freebsd-devil\";i:642;s:21:\"um-icon-social-github\";i:643;s:29:\"um-icon-social-github-outline\";i:644;s:21:\"um-icon-social-google\";i:645;s:29:\"um-icon-social-google-outline\";i:646;s:25:\"um-icon-social-googleplus\";i:647;s:33:\"um-icon-social-googleplus-outline\";i:648;s:25:\"um-icon-social-hackernews\";i:649;s:33:\"um-icon-social-hackernews-outline\";i:650;s:20:\"um-icon-social-html5\";i:651;s:28:\"um-icon-social-html5-outline\";i:652;s:24:\"um-icon-social-instagram\";i:653;s:32:\"um-icon-social-instagram-outline\";i:654;s:25:\"um-icon-social-javascript\";i:655;s:33:\"um-icon-social-javascript-outline\";i:656;s:23:\"um-icon-social-linkedin\";i:657;s:31:\"um-icon-social-linkedin-outline\";i:658;s:23:\"um-icon-social-markdown\";i:659;s:21:\"um-icon-social-nodejs\";i:660;s:22:\"um-icon-social-octocat\";i:661;s:24:\"um-icon-social-pinterest\";i:662;s:32:\"um-icon-social-pinterest-outline\";i:663;s:21:\"um-icon-social-python\";i:664;s:21:\"um-icon-social-reddit\";i:665;s:29:\"um-icon-social-reddit-outline\";i:666;s:18:\"um-icon-social-rss\";i:667;s:26:\"um-icon-social-rss-outline\";i:668;s:19:\"um-icon-social-sass\";i:669;s:20:\"um-icon-social-skype\";i:670;s:28:\"um-icon-social-skype-outline\";i:671;s:23:\"um-icon-social-snapchat\";i:672;s:31:\"um-icon-social-snapchat-outline\";i:673;s:21:\"um-icon-social-tumblr\";i:674;s:29:\"um-icon-social-tumblr-outline\";i:675;s:18:\"um-icon-social-tux\";i:676;s:21:\"um-icon-social-twitch\";i:677;s:29:\"um-icon-social-twitch-outline\";i:678;s:22:\"um-icon-social-twitter\";i:679;s:30:\"um-icon-social-twitter-outline\";i:680;s:18:\"um-icon-social-usd\";i:681;s:26:\"um-icon-social-usd-outline\";i:682;s:20:\"um-icon-social-vimeo\";i:683;s:28:\"um-icon-social-vimeo-outline\";i:684;s:23:\"um-icon-social-whatsapp\";i:685;s:31:\"um-icon-social-whatsapp-outline\";i:686;s:22:\"um-icon-social-windows\";i:687;s:30:\"um-icon-social-windows-outline\";i:688;s:24:\"um-icon-social-wordpress\";i:689;s:32:\"um-icon-social-wordpress-outline\";i:690;s:20:\"um-icon-social-yahoo\";i:691;s:28:\"um-icon-social-yahoo-outline\";i:692;s:18:\"um-icon-social-yen\";i:693;s:26:\"um-icon-social-yen-outline\";i:694;s:22:\"um-icon-social-youtube\";i:695;s:30:\"um-icon-social-youtube-outline\";i:696;s:16:\"um-icon-soup-can\";i:697;s:24:\"um-icon-soup-can-outline\";i:698;s:20:\"um-icon-speakerphone\";i:699;s:19:\"um-icon-speedometer\";i:700;s:13:\"um-icon-spoon\";i:701;s:12:\"um-icon-star\";i:702;s:18:\"um-icon-stats-bars\";i:703;s:13:\"um-icon-steam\";i:704;s:12:\"um-icon-stop\";i:705;s:19:\"um-icon-thermometer\";i:706;s:18:\"um-icon-thumbsdown\";i:707;s:16:\"um-icon-thumbsup\";i:708;s:14:\"um-icon-toggle\";i:709;s:21:\"um-icon-toggle-filled\";i:710;s:19:\"um-icon-transgender\";i:711;s:15:\"um-icon-trash-a\";i:712;s:15:\"um-icon-trash-b\";i:713;s:14:\"um-icon-trophy\";i:714;s:14:\"um-icon-tshirt\";i:715;s:22:\"um-icon-tshirt-outline\";i:716;s:16:\"um-icon-umbrella\";i:717;s:18:\"um-icon-university\";i:718;s:16:\"um-icon-unlocked\";i:719;s:14:\"um-icon-upload\";i:720;s:11:\"um-icon-usb\";i:721;s:19:\"um-icon-videocamera\";i:722;s:19:\"um-icon-volume-high\";i:723;s:18:\"um-icon-volume-low\";i:724;s:21:\"um-icon-volume-medium\";i:725;s:19:\"um-icon-volume-mute\";i:726;s:12:\"um-icon-wand\";i:727;s:17:\"um-icon-waterdrop\";i:728;s:12:\"um-icon-wifi\";i:729;s:17:\"um-icon-wineglass\";i:730;s:13:\"um-icon-woman\";i:731;s:14:\"um-icon-wrench\";i:732;s:12:\"um-icon-xbox\";i:733;s:15:\"um-faicon-glass\";i:734;s:15:\"um-faicon-music\";i:735;s:16:\"um-faicon-search\";i:736;s:20:\"um-faicon-envelope-o\";i:737;s:15:\"um-faicon-heart\";i:738;s:14:\"um-faicon-star\";i:739;s:16:\"um-faicon-star-o\";i:740;s:14:\"um-faicon-user\";i:741;s:14:\"um-faicon-film\";i:742;s:18:\"um-faicon-th-large\";i:743;s:12:\"um-faicon-th\";i:744;s:17:\"um-faicon-th-list\";i:745;s:15:\"um-faicon-check\";i:746;s:15:\"um-faicon-times\";i:747;s:21:\"um-faicon-search-plus\";i:748;s:22:\"um-faicon-search-minus\";i:749;s:19:\"um-faicon-power-off\";i:750;s:16:\"um-faicon-signal\";i:751;s:13:\"um-faicon-cog\";i:752;s:17:\"um-faicon-trash-o\";i:753;s:14:\"um-faicon-home\";i:754;s:16:\"um-faicon-file-o\";i:755;s:17:\"um-faicon-clock-o\";i:756;s:14:\"um-faicon-road\";i:757;s:18:\"um-faicon-download\";i:758;s:29:\"um-faicon-arrow-circle-o-down\";i:759;s:27:\"um-faicon-arrow-circle-o-up\";i:760;s:15:\"um-faicon-inbox\";i:761;s:23:\"um-faicon-play-circle-o\";i:762;s:16:\"um-faicon-repeat\";i:763;s:17:\"um-faicon-refresh\";i:764;s:18:\"um-faicon-list-alt\";i:765;s:14:\"um-faicon-lock\";i:766;s:14:\"um-faicon-flag\";i:767;s:20:\"um-faicon-headphones\";i:768;s:20:\"um-faicon-volume-off\";i:769;s:21:\"um-faicon-volume-down\";i:770;s:19:\"um-faicon-volume-up\";i:771;s:16:\"um-faicon-qrcode\";i:772;s:17:\"um-faicon-barcode\";i:773;s:13:\"um-faicon-tag\";i:774;s:14:\"um-faicon-tags\";i:775;s:14:\"um-faicon-book\";i:776;s:18:\"um-faicon-bookmark\";i:777;s:15:\"um-faicon-print\";i:778;s:16:\"um-faicon-camera\";i:779;s:14:\"um-faicon-font\";i:780;s:14:\"um-faicon-bold\";i:781;s:16:\"um-faicon-italic\";i:782;s:21:\"um-faicon-text-height\";i:783;s:20:\"um-faicon-text-width\";i:784;s:20:\"um-faicon-align-left\";i:785;s:22:\"um-faicon-align-center\";i:786;s:21:\"um-faicon-align-right\";i:787;s:23:\"um-faicon-align-justify\";i:788;s:14:\"um-faicon-list\";i:789;s:17:\"um-faicon-outdent\";i:790;s:16:\"um-faicon-indent\";i:791;s:22:\"um-faicon-video-camera\";i:792;s:19:\"um-faicon-picture-o\";i:793;s:16:\"um-faicon-pencil\";i:794;s:20:\"um-faicon-map-marker\";i:795;s:16:\"um-faicon-adjust\";i:796;s:14:\"um-faicon-tint\";i:797;s:25:\"um-faicon-pencil-square-o\";i:798;s:24:\"um-faicon-share-square-o\";i:799;s:24:\"um-faicon-check-square-o\";i:800;s:16:\"um-faicon-arrows\";i:801;s:23:\"um-faicon-step-backward\";i:802;s:23:\"um-faicon-fast-backward\";i:803;s:18:\"um-faicon-backward\";i:804;s:14:\"um-faicon-play\";i:805;s:15:\"um-faicon-pause\";i:806;s:14:\"um-faicon-stop\";i:807;s:17:\"um-faicon-forward\";i:808;s:22:\"um-faicon-fast-forward\";i:809;s:22:\"um-faicon-step-forward\";i:810;s:15:\"um-faicon-eject\";i:811;s:22:\"um-faicon-chevron-left\";i:812;s:23:\"um-faicon-chevron-right\";i:813;s:21:\"um-faicon-plus-circle\";i:814;s:22:\"um-faicon-minus-circle\";i:815;s:22:\"um-faicon-times-circle\";i:816;s:22:\"um-faicon-check-circle\";i:817;s:25:\"um-faicon-question-circle\";i:818;s:21:\"um-faicon-info-circle\";i:819;s:20:\"um-faicon-crosshairs\";i:820;s:24:\"um-faicon-times-circle-o\";i:821;s:24:\"um-faicon-check-circle-o\";i:822;s:13:\"um-faicon-ban\";i:823;s:20:\"um-faicon-arrow-left\";i:824;s:21:\"um-faicon-arrow-right\";i:825;s:18:\"um-faicon-arrow-up\";i:826;s:20:\"um-faicon-arrow-down\";i:827;s:15:\"um-faicon-share\";i:828;s:16:\"um-faicon-expand\";i:829;s:18:\"um-faicon-compress\";i:830;s:14:\"um-faicon-plus\";i:831;s:15:\"um-faicon-minus\";i:832;s:18:\"um-faicon-asterisk\";i:833;s:28:\"um-faicon-exclamation-circle\";i:834;s:14:\"um-faicon-gift\";i:835;s:14:\"um-faicon-leaf\";i:836;s:14:\"um-faicon-fire\";i:837;s:13:\"um-faicon-eye\";i:838;s:19:\"um-faicon-eye-slash\";i:839;s:30:\"um-faicon-exclamation-triangle\";i:840;s:15:\"um-faicon-plane\";i:841;s:18:\"um-faicon-calendar\";i:842;s:16:\"um-faicon-random\";i:843;s:17:\"um-faicon-comment\";i:844;s:16:\"um-faicon-magnet\";i:845;s:20:\"um-faicon-chevron-up\";i:846;s:22:\"um-faicon-chevron-down\";i:847;s:17:\"um-faicon-retweet\";i:848;s:23:\"um-faicon-shopping-cart\";i:849;s:16:\"um-faicon-folder\";i:850;s:21:\"um-faicon-folder-open\";i:851;s:18:\"um-faicon-arrows-v\";i:852;s:18:\"um-faicon-arrows-h\";i:853;s:19:\"um-faicon-bar-chart\";i:854;s:24:\"um-faicon-twitter-square\";i:855;s:25:\"um-faicon-facebook-square\";i:856;s:22:\"um-faicon-camera-retro\";i:857;s:13:\"um-faicon-key\";i:858;s:14:\"um-faicon-cogs\";i:859;s:18:\"um-faicon-comments\";i:860;s:21:\"um-faicon-thumbs-o-up\";i:861;s:23:\"um-faicon-thumbs-o-down\";i:862;s:19:\"um-faicon-star-half\";i:863;s:17:\"um-faicon-heart-o\";i:864;s:18:\"um-faicon-sign-out\";i:865;s:25:\"um-faicon-linkedin-square\";i:866;s:20:\"um-faicon-thumb-tack\";i:867;s:23:\"um-faicon-external-link\";i:868;s:17:\"um-faicon-sign-in\";i:869;s:16:\"um-faicon-trophy\";i:870;s:23:\"um-faicon-github-square\";i:871;s:16:\"um-faicon-upload\";i:872;s:17:\"um-faicon-lemon-o\";i:873;s:15:\"um-faicon-phone\";i:874;s:18:\"um-faicon-square-o\";i:875;s:20:\"um-faicon-bookmark-o\";i:876;s:22:\"um-faicon-phone-square\";i:877;s:17:\"um-faicon-twitter\";i:878;s:18:\"um-faicon-facebook\";i:879;s:16:\"um-faicon-github\";i:880;s:16:\"um-faicon-unlock\";i:881;s:21:\"um-faicon-credit-card\";i:882;s:13:\"um-faicon-rss\";i:883;s:15:\"um-faicon-hdd-o\";i:884;s:18:\"um-faicon-bullhorn\";i:885;s:14:\"um-faicon-bell\";i:886;s:21:\"um-faicon-certificate\";i:887;s:22:\"um-faicon-hand-o-right\";i:888;s:21:\"um-faicon-hand-o-left\";i:889;s:19:\"um-faicon-hand-o-up\";i:890;s:21:\"um-faicon-hand-o-down\";i:891;s:27:\"um-faicon-arrow-circle-left\";i:892;s:28:\"um-faicon-arrow-circle-right\";i:893;s:25:\"um-faicon-arrow-circle-up\";i:894;s:27:\"um-faicon-arrow-circle-down\";i:895;s:15:\"um-faicon-globe\";i:896;s:16:\"um-faicon-wrench\";i:897;s:15:\"um-faicon-tasks\";i:898;s:16:\"um-faicon-filter\";i:899;s:19:\"um-faicon-briefcase\";i:900;s:20:\"um-faicon-arrows-alt\";i:901;s:15:\"um-faicon-users\";i:902;s:14:\"um-faicon-link\";i:903;s:15:\"um-faicon-cloud\";i:904;s:15:\"um-faicon-flask\";i:905;s:18:\"um-faicon-scissors\";i:906;s:17:\"um-faicon-files-o\";i:907;s:19:\"um-faicon-paperclip\";i:908;s:18:\"um-faicon-floppy-o\";i:909;s:16:\"um-faicon-square\";i:910;s:14:\"um-faicon-bars\";i:911;s:17:\"um-faicon-list-ul\";i:912;s:17:\"um-faicon-list-ol\";i:913;s:23:\"um-faicon-strikethrough\";i:914;s:19:\"um-faicon-underline\";i:915;s:15:\"um-faicon-table\";i:916;s:15:\"um-faicon-magic\";i:917;s:15:\"um-faicon-truck\";i:918;s:19:\"um-faicon-pinterest\";i:919;s:26:\"um-faicon-pinterest-square\";i:920;s:28:\"um-faicon-google-plus-square\";i:921;s:21:\"um-faicon-google-plus\";i:922;s:15:\"um-faicon-money\";i:923;s:20:\"um-faicon-caret-down\";i:924;s:18:\"um-faicon-caret-up\";i:925;s:20:\"um-faicon-caret-left\";i:926;s:21:\"um-faicon-caret-right\";i:927;s:17:\"um-faicon-columns\";i:928;s:14:\"um-faicon-sort\";i:929;s:19:\"um-faicon-sort-desc\";i:930;s:18:\"um-faicon-sort-asc\";i:931;s:18:\"um-faicon-envelope\";i:932;s:18:\"um-faicon-linkedin\";i:933;s:14:\"um-faicon-undo\";i:934;s:15:\"um-faicon-gavel\";i:935;s:20:\"um-faicon-tachometer\";i:936;s:19:\"um-faicon-comment-o\";i:937;s:20:\"um-faicon-comments-o\";i:938;s:14:\"um-faicon-bolt\";i:939;s:17:\"um-faicon-sitemap\";i:940;s:18:\"um-faicon-umbrella\";i:941;s:19:\"um-faicon-clipboard\";i:942;s:21:\"um-faicon-lightbulb-o\";i:943;s:18:\"um-faicon-exchange\";i:944;s:24:\"um-faicon-cloud-download\";i:945;s:22:\"um-faicon-cloud-upload\";i:946;s:17:\"um-faicon-user-md\";i:947;s:21:\"um-faicon-stethoscope\";i:948;s:18:\"um-faicon-suitcase\";i:949;s:16:\"um-faicon-bell-o\";i:950;s:16:\"um-faicon-coffee\";i:951;s:17:\"um-faicon-cutlery\";i:952;s:21:\"um-faicon-file-text-o\";i:953;s:20:\"um-faicon-building-o\";i:954;s:20:\"um-faicon-hospital-o\";i:955;s:19:\"um-faicon-ambulance\";i:956;s:16:\"um-faicon-medkit\";i:957;s:21:\"um-faicon-fighter-jet\";i:958;s:14:\"um-faicon-beer\";i:959;s:18:\"um-faicon-h-square\";i:960;s:21:\"um-faicon-plus-square\";i:961;s:27:\"um-faicon-angle-double-left\";i:962;s:28:\"um-faicon-angle-double-right\";i:963;s:25:\"um-faicon-angle-double-up\";i:964;s:27:\"um-faicon-angle-double-down\";i:965;s:20:\"um-faicon-angle-left\";i:966;s:21:\"um-faicon-angle-right\";i:967;s:18:\"um-faicon-angle-up\";i:968;s:20:\"um-faicon-angle-down\";i:969;s:17:\"um-faicon-desktop\";i:970;s:16:\"um-faicon-laptop\";i:971;s:16:\"um-faicon-tablet\";i:972;s:16:\"um-faicon-mobile\";i:973;s:18:\"um-faicon-circle-o\";i:974;s:20:\"um-faicon-quote-left\";i:975;s:21:\"um-faicon-quote-right\";i:976;s:17:\"um-faicon-spinner\";i:977;s:16:\"um-faicon-circle\";i:978;s:15:\"um-faicon-reply\";i:979;s:20:\"um-faicon-github-alt\";i:980;s:18:\"um-faicon-folder-o\";i:981;s:23:\"um-faicon-folder-open-o\";i:982;s:17:\"um-faicon-smile-o\";i:983;s:17:\"um-faicon-frown-o\";i:984;s:15:\"um-faicon-meh-o\";i:985;s:17:\"um-faicon-gamepad\";i:986;s:20:\"um-faicon-keyboard-o\";i:987;s:16:\"um-faicon-flag-o\";i:988;s:24:\"um-faicon-flag-checkered\";i:989;s:18:\"um-faicon-terminal\";i:990;s:14:\"um-faicon-code\";i:991;s:19:\"um-faicon-reply-all\";i:992;s:21:\"um-faicon-star-half-o\";i:993;s:24:\"um-faicon-location-arrow\";i:994;s:14:\"um-faicon-crop\";i:995;s:19:\"um-faicon-code-fork\";i:996;s:22:\"um-faicon-chain-broken\";i:997;s:18:\"um-faicon-question\";i:998;s:14:\"um-faicon-info\";i:999;s:21:\"um-faicon-exclamation\";i:1000;s:21:\"um-faicon-superscript\";i:1001;s:19:\"um-faicon-subscript\";i:1002;s:16:\"um-faicon-eraser\";i:1003;s:22:\"um-faicon-puzzle-piece\";i:1004;s:20:\"um-faicon-microphone\";i:1005;s:26:\"um-faicon-microphone-slash\";i:1006;s:16:\"um-faicon-shield\";i:1007;s:20:\"um-faicon-calendar-o\";i:1008;s:27:\"um-faicon-fire-extinguisher\";i:1009;s:16:\"um-faicon-rocket\";i:1010;s:16:\"um-faicon-maxcdn\";i:1011;s:29:\"um-faicon-chevron-circle-left\";i:1012;s:30:\"um-faicon-chevron-circle-right\";i:1013;s:27:\"um-faicon-chevron-circle-up\";i:1014;s:29:\"um-faicon-chevron-circle-down\";i:1015;s:15:\"um-faicon-html5\";i:1016;s:14:\"um-faicon-css3\";i:1017;s:16:\"um-faicon-anchor\";i:1018;s:20:\"um-faicon-unlock-alt\";i:1019;s:18:\"um-faicon-bullseye\";i:1020;s:20:\"um-faicon-ellipsis-h\";i:1021;s:20:\"um-faicon-ellipsis-v\";i:1022;s:20:\"um-faicon-rss-square\";i:1023;s:21:\"um-faicon-play-circle\";i:1024;s:16:\"um-faicon-ticket\";i:1025;s:22:\"um-faicon-minus-square\";i:1026;s:24:\"um-faicon-minus-square-o\";i:1027;s:18:\"um-faicon-level-up\";i:1028;s:20:\"um-faicon-level-down\";i:1029;s:22:\"um-faicon-check-square\";i:1030;s:23:\"um-faicon-pencil-square\";i:1031;s:30:\"um-faicon-external-link-square\";i:1032;s:22:\"um-faicon-share-square\";i:1033;s:17:\"um-faicon-compass\";i:1034;s:29:\"um-faicon-caret-square-o-down\";i:1035;s:27:\"um-faicon-caret-square-o-up\";i:1036;s:30:\"um-faicon-caret-square-o-right\";i:1037;s:13:\"um-faicon-eur\";i:1038;s:13:\"um-faicon-gbp\";i:1039;s:13:\"um-faicon-usd\";i:1040;s:13:\"um-faicon-inr\";i:1041;s:13:\"um-faicon-jpy\";i:1042;s:13:\"um-faicon-rub\";i:1043;s:13:\"um-faicon-krw\";i:1044;s:13:\"um-faicon-btc\";i:1045;s:14:\"um-faicon-file\";i:1046;s:19:\"um-faicon-file-text\";i:1047;s:24:\"um-faicon-sort-alpha-asc\";i:1048;s:25:\"um-faicon-sort-alpha-desc\";i:1049;s:25:\"um-faicon-sort-amount-asc\";i:1050;s:26:\"um-faicon-sort-amount-desc\";i:1051;s:26:\"um-faicon-sort-numeric-asc\";i:1052;s:27:\"um-faicon-sort-numeric-desc\";i:1053;s:19:\"um-faicon-thumbs-up\";i:1054;s:21:\"um-faicon-thumbs-down\";i:1055;s:24:\"um-faicon-youtube-square\";i:1056;s:17:\"um-faicon-youtube\";i:1057;s:14:\"um-faicon-xing\";i:1058;s:21:\"um-faicon-xing-square\";i:1059;s:22:\"um-faicon-youtube-play\";i:1060;s:17:\"um-faicon-dropbox\";i:1061;s:24:\"um-faicon-stack-overflow\";i:1062;s:19:\"um-faicon-instagram\";i:1063;s:16:\"um-faicon-flickr\";i:1064;s:13:\"um-faicon-adn\";i:1065;s:19:\"um-faicon-bitbucket\";i:1066;s:26:\"um-faicon-bitbucket-square\";i:1067;s:16:\"um-faicon-tumblr\";i:1068;s:23:\"um-faicon-tumblr-square\";i:1069;s:25:\"um-faicon-long-arrow-down\";i:1070;s:23:\"um-faicon-long-arrow-up\";i:1071;s:25:\"um-faicon-long-arrow-left\";i:1072;s:26:\"um-faicon-long-arrow-right\";i:1073;s:15:\"um-faicon-apple\";i:1074;s:17:\"um-faicon-windows\";i:1075;s:17:\"um-faicon-android\";i:1076;s:15:\"um-faicon-linux\";i:1077;s:18:\"um-faicon-dribbble\";i:1078;s:15:\"um-faicon-skype\";i:1079;s:20:\"um-faicon-foursquare\";i:1080;s:16:\"um-faicon-trello\";i:1081;s:16:\"um-faicon-female\";i:1082;s:14:\"um-faicon-male\";i:1083;s:16:\"um-faicon-gittip\";i:1084;s:15:\"um-faicon-sun-o\";i:1085;s:16:\"um-faicon-moon-o\";i:1086;s:17:\"um-faicon-archive\";i:1087;s:13:\"um-faicon-bug\";i:1088;s:12:\"um-faicon-vk\";i:1089;s:15:\"um-faicon-weibo\";i:1090;s:16:\"um-faicon-renren\";i:1091;s:19:\"um-faicon-pagelines\";i:1092;s:24:\"um-faicon-stack-exchange\";i:1093;s:30:\"um-faicon-arrow-circle-o-right\";i:1094;s:29:\"um-faicon-arrow-circle-o-left\";i:1095;s:29:\"um-faicon-caret-square-o-left\";i:1096;s:22:\"um-faicon-dot-circle-o\";i:1097;s:20:\"um-faicon-wheelchair\";i:1098;s:22:\"um-faicon-vimeo-square\";i:1099;s:13:\"um-faicon-try\";i:1100;s:23:\"um-faicon-plus-square-o\";i:1101;s:23:\"um-faicon-space-shuttle\";i:1102;s:15:\"um-faicon-slack\";i:1103;s:25:\"um-faicon-envelope-square\";i:1104;s:19:\"um-faicon-wordpress\";i:1105;s:16:\"um-faicon-openid\";i:1106;s:20:\"um-faicon-university\";i:1107;s:24:\"um-faicon-graduation-cap\";i:1108;s:15:\"um-faicon-yahoo\";i:1109;s:16:\"um-faicon-google\";i:1110;s:16:\"um-faicon-reddit\";i:1111;s:23:\"um-faicon-reddit-square\";i:1112;s:28:\"um-faicon-stumbleupon-circle\";i:1113;s:21:\"um-faicon-stumbleupon\";i:1114;s:19:\"um-faicon-delicious\";i:1115;s:14:\"um-faicon-digg\";i:1116;s:20:\"um-faicon-pied-piper\";i:1117;s:24:\"um-faicon-pied-piper-alt\";i:1118;s:16:\"um-faicon-drupal\";i:1119;s:16:\"um-faicon-joomla\";i:1120;s:18:\"um-faicon-language\";i:1121;s:13:\"um-faicon-fax\";i:1122;s:18:\"um-faicon-building\";i:1123;s:15:\"um-faicon-child\";i:1124;s:13:\"um-faicon-paw\";i:1125;s:15:\"um-faicon-spoon\";i:1126;s:14:\"um-faicon-cube\";i:1127;s:15:\"um-faicon-cubes\";i:1128;s:17:\"um-faicon-behance\";i:1129;s:24:\"um-faicon-behance-square\";i:1130;s:15:\"um-faicon-steam\";i:1131;s:22:\"um-faicon-steam-square\";i:1132;s:17:\"um-faicon-recycle\";i:1133;s:13:\"um-faicon-car\";i:1134;s:14:\"um-faicon-taxi\";i:1135;s:14:\"um-faicon-tree\";i:1136;s:17:\"um-faicon-spotify\";i:1137;s:20:\"um-faicon-deviantart\";i:1138;s:20:\"um-faicon-soundcloud\";i:1139;s:18:\"um-faicon-database\";i:1140;s:20:\"um-faicon-file-pdf-o\";i:1141;s:21:\"um-faicon-file-word-o\";i:1142;s:22:\"um-faicon-file-excel-o\";i:1143;s:27:\"um-faicon-file-powerpoint-o\";i:1144;s:22:\"um-faicon-file-image-o\";i:1145;s:24:\"um-faicon-file-archive-o\";i:1146;s:22:\"um-faicon-file-audio-o\";i:1147;s:22:\"um-faicon-file-video-o\";i:1148;s:21:\"um-faicon-file-code-o\";i:1149;s:14:\"um-faicon-vine\";i:1150;s:17:\"um-faicon-codepen\";i:1151;s:18:\"um-faicon-jsfiddle\";i:1152;s:19:\"um-faicon-life-ring\";i:1153;s:24:\"um-faicon-circle-o-notch\";i:1154;s:15:\"um-faicon-rebel\";i:1155;s:16:\"um-faicon-empire\";i:1156;s:20:\"um-faicon-git-square\";i:1157;s:13:\"um-faicon-git\";i:1158;s:21:\"um-faicon-hacker-news\";i:1159;s:23:\"um-faicon-tencent-weibo\";i:1160;s:12:\"um-faicon-qq\";i:1161;s:16:\"um-faicon-weixin\";i:1162;s:21:\"um-faicon-paper-plane\";i:1163;s:23:\"um-faicon-paper-plane-o\";i:1164;s:17:\"um-faicon-history\";i:1165;s:21:\"um-faicon-circle-thin\";i:1166;s:16:\"um-faicon-header\";i:1167;s:19:\"um-faicon-paragraph\";i:1168;s:17:\"um-faicon-sliders\";i:1169;s:19:\"um-faicon-share-alt\";i:1170;s:26:\"um-faicon-share-alt-square\";i:1171;s:14:\"um-faicon-bomb\";i:1172;s:18:\"um-faicon-futbol-o\";i:1173;s:13:\"um-faicon-tty\";i:1174;s:20:\"um-faicon-binoculars\";i:1175;s:14:\"um-faicon-plug\";i:1176;s:20:\"um-faicon-slideshare\";i:1177;s:16:\"um-faicon-twitch\";i:1178;s:14:\"um-faicon-yelp\";i:1179;s:21:\"um-faicon-newspaper-o\";i:1180;s:14:\"um-faicon-wifi\";i:1181;s:20:\"um-faicon-calculator\";i:1182;s:16:\"um-faicon-paypal\";i:1183;s:23:\"um-faicon-google-wallet\";i:1184;s:17:\"um-faicon-cc-visa\";i:1185;s:23:\"um-faicon-cc-mastercard\";i:1186;s:21:\"um-faicon-cc-discover\";i:1187;s:17:\"um-faicon-cc-amex\";i:1188;s:19:\"um-faicon-cc-paypal\";i:1189;s:19:\"um-faicon-cc-stripe\";i:1190;s:20:\"um-faicon-bell-slash\";i:1191;s:22:\"um-faicon-bell-slash-o\";i:1192;s:15:\"um-faicon-trash\";i:1193;s:19:\"um-faicon-copyright\";i:1194;s:12:\"um-faicon-at\";i:1195;s:20:\"um-faicon-eyedropper\";i:1196;s:21:\"um-faicon-paint-brush\";i:1197;s:23:\"um-faicon-birthday-cake\";i:1198;s:20:\"um-faicon-area-chart\";i:1199;s:19:\"um-faicon-pie-chart\";i:1200;s:20:\"um-faicon-line-chart\";i:1201;s:16:\"um-faicon-lastfm\";i:1202;s:23:\"um-faicon-lastfm-square\";i:1203;s:20:\"um-faicon-toggle-off\";i:1204;s:19:\"um-faicon-toggle-on\";i:1205;s:17:\"um-faicon-bicycle\";i:1206;s:13:\"um-faicon-bus\";i:1207;s:17:\"um-faicon-ioxhost\";i:1208;s:19:\"um-faicon-angellist\";i:1209;s:12:\"um-faicon-cc\";i:1210;s:13:\"um-faicon-ils\";i:1211;s:18:\"um-faicon-meanpath\";}','yes'),(1296,'cff_style_settings','a:132:{s:19:\"cff_show_links_type\";b:1;s:19:\"cff_show_event_type\";b:1;s:19:\"cff_show_video_type\";b:1;s:20:\"cff_show_photos_type\";b:1;s:20:\"cff_show_status_type\";b:1;s:17:\"cff_preset_layout\";s:4:\"full\";s:13:\"cff_show_text\";s:2:\"on\";s:13:\"cff_show_desc\";s:2:\"on\";s:21:\"cff_show_shared_links\";s:2:\"on\";s:13:\"cff_show_date\";s:2:\"on\";s:14:\"cff_show_media\";s:0:\"\";s:20:\"cff_show_event_title\";s:2:\"on\";s:22:\"cff_show_event_details\";s:2:\"on\";s:13:\"cff_show_meta\";s:0:\"\";s:13:\"cff_show_link\";s:2:\"on\";s:17:\"cff_show_like_box\";s:2:\"on\";s:17:\"cff_post_bg_color\";s:1:\"#\";s:16:\"cff_post_rounded\";s:1:\"4\";s:16:\"cff_title_format\";s:1:\"p\";s:14:\"cff_title_size\";s:7:\"inherit\";s:16:\"cff_title_weight\";s:7:\"inherit\";s:15:\"cff_title_color\";s:1:\"#\";s:23:\"cff_posttext_link_color\";s:1:\"#\";s:13:\"cff_body_size\";s:2:\"12\";s:15:\"cff_body_weight\";s:7:\"inherit\";s:14:\"cff_body_color\";s:1:\"#\";s:21:\"cff_link_title_format\";s:1:\"p\";s:19:\"cff_link_title_size\";s:7:\"inherit\";s:20:\"cff_link_title_color\";s:1:\"#\";s:18:\"cff_link_url_color\";s:1:\"#\";s:17:\"cff_link_bg_color\";s:1:\"#\";s:21:\"cff_link_border_color\";s:1:\"#\";s:20:\"cff_disable_link_box\";s:0:\"\";s:22:\"cff_event_title_format\";s:1:\"p\";s:20:\"cff_event_title_size\";s:7:\"inherit\";s:22:\"cff_event_title_weight\";s:7:\"inherit\";s:21:\"cff_event_title_color\";s:1:\"#\";s:19:\"cff_event_date_size\";s:7:\"inherit\";s:21:\"cff_event_date_weight\";s:7:\"inherit\";s:20:\"cff_event_date_color\";s:1:\"#\";s:23:\"cff_event_date_position\";s:5:\"below\";s:25:\"cff_event_date_formatting\";s:1:\"1\";s:21:\"cff_event_date_custom\";s:0:\"\";s:22:\"cff_event_details_size\";s:7:\"inherit\";s:24:\"cff_event_details_weight\";s:7:\"inherit\";s:23:\"cff_event_details_color\";s:1:\"#\";s:20:\"cff_event_link_color\";s:1:\"#\";s:17:\"cff_date_position\";s:6:\"author\";s:13:\"cff_date_size\";s:7:\"inherit\";s:15:\"cff_date_weight\";s:7:\"inherit\";s:14:\"cff_date_color\";s:1:\"#\";s:19:\"cff_date_formatting\";s:1:\"1\";s:15:\"cff_date_custom\";s:0:\"\";s:15:\"cff_date_before\";s:0:\"\";s:14:\"cff_date_after\";s:0:\"\";s:12:\"cff_timezone\";s:15:\"America/Chicago\";s:13:\"cff_link_size\";s:7:\"inherit\";s:15:\"cff_link_weight\";s:7:\"inherit\";s:14:\"cff_link_color\";s:1:\"#\";s:22:\"cff_facebook_link_text\";s:16:\"View on Facebook\";s:18:\"cff_view_link_text\";s:9:\"View Link\";s:20:\"cff_link_to_timeline\";b:0;s:14:\"cff_icon_style\";s:5:\"light\";s:19:\"cff_meta_text_color\";s:0:\"\";s:17:\"cff_meta_bg_color\";s:0:\"\";s:19:\"cff_nocomments_text\";s:15:\"No comments yet\";s:17:\"cff_hide_comments\";s:0:\"\";s:14:\"cff_feed_width\";s:4:\"100%\";s:15:\"cff_feed_height\";s:4:\"100%\";s:16:\"cff_feed_padding\";s:2:\"5%\";s:21:\"cff_like_box_position\";s:6:\"bottom\";s:20:\"cff_like_box_outside\";s:0:\"\";s:17:\"cff_likebox_width\";s:3:\"300\";s:18:\"cff_likebox_height\";s:0:\"\";s:18:\"cff_like_box_faces\";s:2:\"on\";s:19:\"cff_like_box_border\";s:0:\"\";s:18:\"cff_like_box_cover\";s:2:\"on\";s:25:\"cff_like_box_small_header\";s:0:\"\";s:21:\"cff_like_box_hide_cta\";s:0:\"\";s:12:\"cff_bg_color\";s:7:\"#c1c1c1\";s:20:\"cff_likebox_bg_color\";s:0:\"\";s:23:\"cff_like_box_text_color\";s:4:\"blue\";s:16:\"cff_video_height\";s:0:\"\";s:15:\"cff_show_author\";s:2:\"on\";s:9:\"cff_class\";s:0:\"\";s:14:\"cff_open_links\";b:1;s:14:\"cff_custom_css\";s:0:\"\";s:13:\"cff_custom_js\";s:0:\"\";s:14:\"cff_title_link\";s:0:\"\";s:13:\"cff_post_tags\";s:2:\"on\";s:17:\"cff_link_hashtags\";s:2:\"on\";s:20:\"cff_event_title_link\";s:2:\"on\";s:16:\"cff_video_action\";s:4:\"post\";s:10:\"cff_app_id\";s:0:\"\";s:15:\"cff_show_credit\";s:0:\"\";s:15:\"cff_font_source\";s:3:\"cdn\";s:13:\"cff_sep_color\";s:7:\"#81d742\";s:12:\"cff_sep_size\";s:1:\"2\";s:15:\"cff_show_header\";s:2:\"on\";s:18:\"cff_header_outside\";s:0:\"\";s:15:\"cff_header_text\";s:31:\"Recent Facebook Community Posts\";s:19:\"cff_header_bg_color\";s:1:\"#\";s:18:\"cff_header_padding\";s:2:\"1%\";s:20:\"cff_header_text_size\";s:7:\"inherit\";s:22:\"cff_header_text_weight\";s:7:\"inherit\";s:21:\"cff_header_text_color\";s:7:\"#000000\";s:15:\"cff_header_icon\";s:15:\"facebook-square\";s:21:\"cff_header_icon_color\";s:1:\"#\";s:20:\"cff_header_icon_size\";s:2:\"28\";s:15:\"cff_author_size\";s:7:\"inherit\";s:16:\"cff_author_color\";s:7:\"#81d742\";s:17:\"cff_see_more_text\";s:8:\"See More\";s:17:\"cff_see_less_text\";s:8:\"See Less\";s:23:\"cff_facebook_share_text\";s:5:\"Share\";s:22:\"cff_show_facebook_link\";s:2:\"on\";s:23:\"cff_show_facebook_share\";s:2:\"on\";s:25:\"cff_translate_photos_text\";s:6:\"photos\";s:20:\"cff_translate_second\";s:6:\"second\";s:21:\"cff_translate_seconds\";s:7:\"seconds\";s:20:\"cff_translate_minute\";s:6:\"minute\";s:21:\"cff_translate_minutes\";s:7:\"minutes\";s:18:\"cff_translate_hour\";s:4:\"hour\";s:19:\"cff_translate_hours\";s:5:\"hours\";s:17:\"cff_translate_day\";s:3:\"day\";s:18:\"cff_translate_days\";s:4:\"days\";s:18:\"cff_translate_week\";s:4:\"week\";s:19:\"cff_translate_weeks\";s:5:\"weeks\";s:19:\"cff_translate_month\";s:5:\"month\";s:20:\"cff_translate_months\";s:6:\"months\";s:18:\"cff_translate_year\";s:4:\"year\";s:19:\"cff_translate_years\";s:5:\"years\";s:17:\"cff_translate_ago\";s:3:\"ago\";}','yes'),(1297,'cff_show_access_token','','yes'),(1298,'cff_access_token','','yes'),(1299,'cff_page_id','388651167995804','yes'),(1300,'cff_page_type','group','yes'),(1301,'cff_num_show','10','yes'),(1302,'cff_post_limit','10','yes'),(1303,'cff_show_others','me','yes'),(1304,'cff_cache_time','1','yes'),(1305,'cff_cache_time_unit','minutes','yes'),(1306,'cff_locale','en_US','yes'),(1307,'cff_title_length','400','yes'),(1308,'cff_body_length','200','yes'),(1309,'cff_ajax','','yes'),(1310,'cff_preserve_settings','','yes'),(26909,'_transient_timeout_jpp_li_8f1479256609ba6910577618293434f9','1443792256','no'),(26910,'_transient_jpp_li_8f1479256609ba6910577618293434f9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (31.31.77.242)\";s:17:\"seconds_remaining\";i:3087;s:16:\"blocked_attempts\";s:3:\"228\";s:6:\"expire\";i:1443792256;}','no'),(26917,'_transient_timeout_jpp_li_da06149829905008bc2049b92c1fc67b','1443793336','no'),(26918,'_transient_jpp_li_da06149829905008bc2049b92c1fc67b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (77.247.181.165)\";s:17:\"seconds_remaining\";i:1878;s:16:\"blocked_attempts\";s:3:\"230\";s:6:\"expire\";i:1443793336;}','no'),(26718,'_transient_timeout_jpp_li_360bcf6247039f98e53112711ee25429','1443751114','no'),(26719,'_transient_jpp_li_360bcf6247039f98e53112711ee25429','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (176.10.99.207)\";s:17:\"seconds_remaining\";i:2696;s:16:\"blocked_attempts\";s:3:\"223\";s:6:\"expire\";i:1443751114;}','no'),(26721,'_transient_timeout_jpp_li_477c27b4515b19991ca6803acef78faf','1443750807','no'),(26722,'_transient_jpp_li_477c27b4515b19991ca6803acef78faf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (176.10.99.208)\";s:17:\"seconds_remaining\";i:2385;s:16:\"blocked_attempts\";s:3:\"224\";s:6:\"expire\";i:1443750807;}','no'),(26726,'_transient_timeout_jpp_li_d0d341cf541f7738f2caf5866b397983','1443753080','no'),(26727,'_transient_jpp_li_d0d341cf541f7738f2caf5866b397983','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (109.163.234.7)\";s:17:\"seconds_remaining\";i:2596;s:16:\"blocked_attempts\";s:3:\"225\";s:6:\"expire\";i:1443753080;}','no'),(29498,'_transient_jpp_li_bf215b54a9045c567cd37b8b7b280390','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (176.10.99.202)\";s:17:\"seconds_remaining\";i:1083;s:16:\"blocked_attempts\";s:3:\"291\";s:6:\"expire\";i:1444233652;}','no'),(27039,'_transient_jpp_li_341433e81779d41554fa99dfe1e828af','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (176.10.99.205)\";s:17:\"seconds_remaining\";i:2175;s:16:\"blocked_attempts\";s:3:\"240\";s:6:\"expire\";i:1443842934;}','no'),(28342,'_transient_timeout_jpp_li_6cdd16f08e16caba070d625a8dcc2c79','1444081980','no'),(28343,'_transient_jpp_li_6cdd16f08e16caba070d625a8dcc2c79','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (204.8.156.142)\";s:17:\"seconds_remaining\";i:3038;s:16:\"blocked_attempts\";s:3:\"271\";s:6:\"expire\";i:1444081980;}','no'),(30264,'_transient_timeout_jetpack_site_is_vcs','1444417293','no'),(26525,'_transient_timeout_jpp_li_75e00b9320c9fb7f1236f8441e7ea5c7','1443692512','no'),(26526,'_transient_jpp_li_75e00b9320c9fb7f1236f8441e7ea5c7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (95.211.101.231)\";s:17:\"seconds_remaining\";i:2209;s:16:\"blocked_attempts\";s:3:\"207\";s:6:\"expire\";i:1443692512;}','no'),(28563,'_transient_timeout_jpp_li_9e8f14350caebd2132b1d55cdb7b02ee','1444127441','no'),(13459,'_site_transient_timeout_browser_16923c53238bd8753cd1eb89d4af2e75','1441408590','yes'),(13460,'_site_transient_browser_16923c53238bd8753cd1eb89d4af2e75','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"44.0.2403.157\";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'),(29562,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1444284518','no'),(29563,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1444241318','no'),(28339,'_transient_timeout_jpp_li_965160e4d750c8ddbf5291f2241123af','1444079610','no'),(28340,'_transient_jpp_li_965160e4d750c8ddbf5291f2241123af','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (109.163.234.2)\";s:17:\"seconds_remaining\";i:671;s:16:\"blocked_attempts\";s:3:\"270\";s:6:\"expire\";i:1444079610;}','no'),(1330,'vasthtml_options','a:13:{s:20:\"forum_posts_per_page\";i:10;s:22:\"forum_threads_per_page\";i:20;s:26:\"forum_require_registration\";b:1;s:17:\"forum_date_format\";s:11:\"F j, Y, H:i\";s:18:\"forum_use_gravatar\";b:1;s:10:\"forum_skin\";s:9:\"exclusive\";s:26:\"forum_allow_post_in_solved\";b:1;s:8:\"set_sort\";s:4:\"DESC\";s:14:\"forum_use_spam\";b:0;s:16:\"forum_use_bbcode\";b:1;s:12:\"forum_capcha\";N;s:9:\"hot_topic\";i:15;s:13:\"veryhot_topic\";i:25;}','yes'),(1331,'wpf_mod_option_vers','2','yes'),(1691,'um_cached_role_member','a:15:{s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";}','yes'),(28788,'um_cache_userdata_1','a:134:{s:2:\"ID\";i:1;s:10:\"user_login\";s:9:\"ReeseWood\";s:9:\"user_pass\";s:34:\"$P$BUV4cA0J9HqrXq1hMGHXgVBeOg1sl8/\";s:13:\"user_nicename\";s:9:\"ReeseWood\";s:10:\"user_email\";s:22:\"thebeloitpod@gmail.com\";s:8:\"user_url\";s:23:\"http://thebeloitpod.com\";s:15:\"user_registered\";s:19:\"2015-05-11 16:32:55\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:9:\"ReeseWood\";s:13:\"administrator\";b:1;s:13:\"bbp_keymaster\";b:1;s:8:\"wp_roles\";s:27:\"administrator,bbp_keymaster\";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: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:9:\"add_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:9:\"keep_gate\";b:1;s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:18:\"edit_others_forums\";b:1;s:13:\"delete_forums\";b:1;s:20:\"delete_others_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:9:\"ReeseWood\";s:10:\"first_name\";s:9:\"ReeseWood\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:20:\"default_password_nag\";s:0:\"\";s:18:\"show_welcome_panel\";s:1:\"1\";s:37:\"wp_dashboard_quick_press_last_post_id\";s:3:\"519\";s:13:\"last_activity\";s:19:\"2015-09-12 14:55:45\";s:6:\"active\";s:1:\"1\";s:15:\"powerpress_user\";s:37:\"a:1:{s:19:\"dashboard_installed\";i:2;}\";s:34:\"slidedeck_default_stage_background\";s:4:\"dark\";s:30:\"_custom_banners_meta_box_order\";s:12:\"metaboxes_v1\";s:9:\"lastvisit\";s:10:\"1439069073\";s:15:\"wpf_useroptions\";s:76:\"a:3:{s:13:\"allow_profile\";b:1;s:6:\"notify\";b:1;s:13:\"notify_topics\";s:0:\"\";}\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:5:\"admin\";s:29:\"bp_xprofile_visibility_levels\";s:23:\"a:1:{i:1;s:6:\"public\";}\";s:14:\"_um_last_login\";s:10:\"1441982464\";s:19:\"account_status_name\";s:8:\"Approved\";s:9:\"role_name\";s:5:\"Admin\";s:4:\"core\";s:5:\"admin\";s:18:\"can_access_wpadmin\";s:1:\"1\";s:20:\"can_not_see_adminbar\";s:1:\"0\";s:17:\"can_edit_everyone\";s:1:\"1\";s:19:\"can_delete_everyone\";s:1:\"1\";s:16:\"can_edit_profile\";s:1:\"1\";s:18:\"can_delete_profile\";s:1:\"1\";s:12:\"can_view_all\";s:1:\"1\";s:24:\"can_make_private_profile\";s:1:\"1\";s:26:\"can_access_private_profile\";s:1:\"1\";s:16:\"default_homepage\";s:1:\"1\";s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:14:\"redirect_admin\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:1;}','yes'),(1693,'__ultimatemember_sitekey','thebeloitpod.com/wordpress1-C60CbaS358isUTERvSLI','yes'),(1694,'um_is_installed','1','yes'),(1695,'um_core_forms','a:3:{i:363;i:363;i:364;i:364;i:365;i:365;}','yes'),(1696,'um_core_directories','a:1:{i:366;i:366;}','yes'),(1697,'um_core_pages','a:7:{s:4:\"user\";s:3:\"373\";s:5:\"login\";s:3:\"369\";s:8:\"register\";s:3:\"371\";s:7:\"members\";s:3:\"373\";s:6:\"logout\";s:3:\"375\";s:7:\"account\";s:3:\"377\";s:14:\"password-reset\";s:3:\"379\";}','yes'),(1698,'um_options','a:175:{s:8:\"last_tab\";s:0:\"\";s:9:\"core_user\";s:3:\"373\";s:12:\"core_account\";s:3:\"377\";s:12:\"core_members\";s:3:\"373\";s:13:\"core_register\";s:3:\"371\";s:10:\"core_login\";s:3:\"369\";s:11:\"core_logout\";s:3:\"375\";s:19:\"core_password-reset\";s:3:\"379\";s:12:\"default_role\";s:6:\"member\";s:14:\"permalink_base\";s:10:\"user_login\";s:12:\"display_name\";s:9:\"full_name\";s:18:\"display_name_field\";s:0:\"\";s:15:\"author_redirect\";s:1:\"1\";s:12:\"members_page\";s:1:\"1\";s:13:\"use_gravatars\";s:1:\"0\";s:24:\"reset_require_strongpass\";s:1:\"0\";s:20:\"account_tab_password\";s:1:\"1\";s:19:\"account_tab_privacy\";s:1:\"1\";s:25:\"account_tab_notifications\";s:1:\"1\";s:18:\"account_tab_delete\";s:1:\"1\";s:19:\"delete_account_text\";s:150:\"Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below\";s:12:\"account_name\";s:1:\"1\";s:13:\"account_email\";s:1:\"1\";s:26:\"account_require_strongpass\";s:1:\"0\";s:9:\"panic_key\";s:10:\"Alwt3O5RDU\";s:10:\"accessible\";s:1:\"0\";s:15:\"access_redirect\";s:0:\"\";s:13:\"wpadmin_login\";s:1:\"1\";s:22:\"wpadmin_login_redirect\";s:13:\"um_login_page\";s:26:\"wpadmin_login_redirect_url\";s:0:\"\";s:16:\"wpadmin_register\";s:1:\"1\";s:25:\"wpadmin_register_redirect\";s:16:\"um_register_page\";s:29:\"wpadmin_register_redirect_url\";s:0:\"\";s:24:\"access_widget_admin_only\";s:1:\"1\";s:17:\"wpadmin_allow_ips\";s:0:\"\";s:11:\"blocked_ips\";s:0:\"\";s:14:\"blocked_emails\";s:0:\"\";s:13:\"blocked_words\";s:47:\"admin\r\nadministrator\r\nwebmaster\r\nsupport\r\nstaff\";s:9:\"mail_from\";s:18:\"The Beloit Podcast\";s:14:\"mail_from_addr\";s:22:\"thebeloitpod@gmail.com\";s:10:\"email_html\";s:1:\"0\";s:16:\"welcome_email_on\";s:1:\"1\";s:17:\"welcome_email_sub\";s:23:\"Welcome to {site_name}!\";s:13:\"welcome_email\";s:341:\"Hi {display_name},\r\n\r\nThank you for signing up with {site_name}! Your account is now active.\r\n\r\nTo login please visit the following url:\r\n\r\n{login_url}\r\n\r\nYour account e-mail: {email}\r\nYour account username: {username}\r\nYour account password: {password}\r\n\r\nIf you have any problems, please contact us at {admin_email}\r\n\r\nThanks,\r\n{site_name}\";s:18:\"checkmail_email_on\";s:1:\"1\";s:19:\"checkmail_email_sub\";s:28:\"Please activate your account\";s:15:\"checkmail_email\";s:266:\"Hi {display_name},\r\n\r\nThank you for signing up with {site_name}! To activate your account, please click the link below to confirm your email address:\r\n\r\n{account_activation_link}\r\n\r\nIf you have any problems, please contact us at {admin_email}\r\n\r\nThanks,\r\n{site_name}\";s:16:\"pending_email_on\";s:1:\"1\";s:17:\"pending_email_sub\";s:30:\"Your account is pending review\";s:13:\"pending_email\";s:272:\"Hi {display_name},\r\n\r\nThank you for signing up with {site_name}! Your account is currently being reviewed by a member of our team.\r\n\r\nPlease allow us some time to process your request.\r\n\r\nIf you have any problems, please contact us at {admin_email}\r\n\r\nThanks,\r\n{site_name}\";s:17:\"approved_email_on\";s:1:\"1\";s:18:\"approved_email_sub\";s:41:\"Your account at {site_name} is now active\";s:14:\"approved_email\";s:363:\"Hi {display_name},\r\n\r\nThank you for signing up with {site_name}! Your account has been approved and is now active.\r\n\r\nTo login please visit the following url:\r\n\r\n{login_url}\r\n\r\nYour account e-mail: {email}\r\nYour account username: {username}\r\nYour account password: {password}\r\n\r\nIf you have any problems, please contact us at {admin_email}\r\n\r\nThanks,\r\n{site_name}\";s:17:\"rejected_email_on\";s:1:\"1\";s:18:\"rejected_email_sub\";s:30:\"Your account has been rejected\";s:14:\"rejected_email\";s:260:\"Hi {display_name},\r\n\r\nThank you for applying for membership to {site_name}! We have reviewed your information and unfortunately we are unable to accept you as a member at this moment.\r\n\r\nPlease feel free to apply again at a future date.\r\n\r\nThanks,\r\n{site_name}\";s:17:\"inactive_email_on\";s:1:\"1\";s:18:\"inactive_email_sub\";s:33:\"Your account has been deactivated\";s:14:\"inactive_email\";s:222:\"Hi {display_name},\r\n\r\nThis is an automated email to let you know your {site_name} account has been deactivated.\r\n\r\nIf you would like your account to be reactivated please contact us at {admin_email}\r\n\r\nThanks,\r\n{site_name}\";s:17:\"deletion_email_on\";s:1:\"1\";s:18:\"deletion_email_sub\";s:29:\"Your account has been deleted\";s:14:\"deletion_email\";s:332:\"Hi {display_name},\r\n\r\nThis is an automated email to let you know your {site_name} account has been deleted. All of your personal information has been permanently deleted and you will no longer be able to login to {site_name}.\r\n\r\nIf your account has been deleted by accident please contact us at {admin_email}\r\n\r\nThanks,\r\n{site_name}\";s:16:\"resetpw_email_on\";s:1:\"1\";s:17:\"resetpw_email_sub\";s:19:\"Reset your password\";s:13:\"resetpw_email\";s:266:\"Hi {display_name},\r\n\r\nWe received a request to reset the password for your account. If you made this request, click the link below to change your password:\r\n\r\n{password_reset_link}\r\n\r\nIf you didn\'t make this request, you can ignore this email\r\n\r\nThanks,\r\n{site_name}\";s:18:\"changedpw_email_on\";s:1:\"1\";s:19:\"changedpw_email_sub\";s:42:\"Your {site_name} password has been changed\";s:15:\"changedpw_email\";s:279:\"Hi {display_name},\r\n\r\nYou recently changed the password associated with your {site_name} account.\r\n\r\nIf you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}\r\n\r\nThanks,\r\n{site_name}\";s:11:\"admin_email\";s:22:\"thebeloitpod@gmail.com\";s:24:\"notification_new_user_on\";s:1:\"1\";s:25:\"notification_new_user_sub\";s:30:\"[{site_name}] New user account\";s:21:\"notification_new_user\";s:187:\"{display_name} has just created an account on {site_name}. To view their profile click here:\r\n\r\n{user_profile_link}\r\n\r\nHere is the submitted registration form:\r\n\r\n{submitted_registration}\";s:22:\"notification_review_on\";s:1:\"0\";s:23:\"notification_review_sub\";s:38:\"[{site_name}] New user awaiting review\";s:19:\"notification_review\";s:245:\"{display_name} has just applied for membership to {site_name} and is waiting to be reviewed.\r\n\r\nTo review this member please click the following link:\r\n\r\n{user_profile_link}\r\n\r\nHere is the submitted registration form:\r\n\r\n{submitted_registration}\";s:24:\"notification_deletion_on\";s:1:\"0\";s:25:\"notification_deletion_sub\";s:29:\"[{site_name}] Account deleted\";s:21:\"notification_deletion\";s:58:\"{display_name} has just deleted their {site_name} account.\";s:22:\"profile_photo_max_size\";s:0:\"\";s:20:\"cover_photo_max_size\";s:0:\"\";s:17:\"photo_thumb_sizes\";a:3:{i:0;s:2:\"40\";i:1;s:2:\"80\";i:2;s:3:\"190\";}s:17:\"cover_thumb_sizes\";a:2:{i:0;s:3:\"300\";i:1;s:3:\"600\";}s:17:\"image_compression\";s:2:\"60\";s:15:\"image_max_width\";s:4:\"1000\";s:15:\"cover_min_width\";s:4:\"1000\";s:13:\"profile_title\";s:35:\"{display_name} | The Beloit Podcast\";s:12:\"profile_desc\";s:83:\"{display_name} is on {site_name}. Join {site_name} to view {display_name}\'s profile\";s:18:\"directory_template\";s:7:\"members\";s:12:\"active_color\";s:7:\"#22e200\";s:15:\"secondary_color\";s:7:\"#e023da\";s:17:\"primary_btn_color\";s:7:\"#eeee22\";s:17:\"primary_btn_hover\";s:7:\"#8224e3\";s:16:\"primary_btn_text\";s:7:\"#ffffff\";s:19:\"secondary_btn_color\";s:7:\"#eeeeee\";s:19:\"secondary_btn_hover\";s:7:\"#e5e5e5\";s:18:\"secondary_btn_text\";s:7:\"#666666\";s:14:\"help_tip_color\";s:7:\"#cccccc\";s:16:\"form_field_label\";s:7:\"#555555\";s:11:\"form_border\";s:14:\"2px solid #ddd\";s:17:\"form_border_hover\";s:14:\"2px solid #bbb\";s:13:\"form_bg_color\";s:7:\"#ffffff\";s:19:\"form_bg_color_focus\";s:7:\"#ffffff\";s:15:\"form_text_color\";s:7:\"#666666\";s:16:\"form_placeholder\";s:7:\"#aaaaaa\";s:15:\"form_icon_color\";s:7:\"#aaaaaa\";s:13:\"form_asterisk\";s:1:\"0\";s:19:\"form_asterisk_color\";s:7:\"#aaaaaa\";s:16:\"profile_template\";s:7:\"profile\";s:17:\"profile_max_width\";s:6:\"1000px\";s:22:\"profile_area_max_width\";s:5:\"600px\";s:13:\"profile_align\";s:6:\"center\";s:13:\"profile_icons\";s:5:\"label\";s:24:\"profile_primary_btn_word\";s:14:\"Update Profile\";s:21:\"profile_secondary_btn\";s:1:\"1\";s:26:\"profile_secondary_btn_word\";s:6:\"Cancel\";s:12:\"profile_role\";s:1:\"0\";s:15:\"profile_main_bg\";s:0:\"\";s:17:\"profile_header_bg\";s:0:\"\";s:14:\"default_avatar\";a:5:{s:3:\"url\";s:99:\"http://thebeloitpod.com/wordpress1/wp-content/plugins/ultimate-member/assets/img/default_avatar.jpg\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"default_cover\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"profile_photosize\";s:5:\"190px\";s:19:\"profile_photocorner\";s:1:\"1\";s:21:\"profile_cover_enabled\";s:1:\"1\";s:19:\"profile_cover_ratio\";s:5:\"2.7:1\";s:21:\"profile_show_metaicon\";s:1:\"0\";s:19:\"profile_header_text\";s:7:\"#999999\";s:25:\"profile_header_link_color\";s:7:\"#555555\";s:26:\"profile_header_link_hcolor\";s:7:\"#444444\";s:25:\"profile_header_icon_color\";s:7:\"#aaaaaa\";s:26:\"profile_header_icon_hcolor\";s:7:\"#3ba1da\";s:17:\"profile_show_name\";s:1:\"1\";s:25:\"profile_show_social_links\";s:1:\"0\";s:16:\"profile_show_bio\";s:1:\"1\";s:20:\"profile_bio_maxchars\";s:3:\"180\";s:19:\"profile_header_menu\";s:2:\"bc\";s:18:\"profile_empty_text\";s:1:\"1\";s:22:\"profile_empty_text_emo\";s:1:\"1\";s:12:\"profile_menu\";s:1:\"1\";s:16:\"profile_tab_main\";s:1:\"1\";s:17:\"profile_tab_posts\";s:1:\"1\";s:20:\"profile_tab_comments\";s:1:\"1\";s:24:\"profile_menu_default_tab\";s:4:\"main\";s:18:\"profile_menu_icons\";s:1:\"1\";s:19:\"profile_menu_counts\";s:1:\"1\";s:17:\"register_template\";s:8:\"register\";s:18:\"register_max_width\";s:5:\"450px\";s:14:\"register_align\";s:6:\"center\";s:14:\"register_icons\";s:5:\"label\";s:25:\"register_primary_btn_word\";s:8:\"Register\";s:22:\"register_secondary_btn\";s:1:\"1\";s:27:\"register_secondary_btn_word\";s:5:\"Login\";s:26:\"register_secondary_btn_url\";s:0:\"\";s:13:\"register_role\";s:1:\"0\";s:14:\"login_template\";s:5:\"login\";s:15:\"login_max_width\";s:5:\"450px\";s:11:\"login_align\";s:6:\"center\";s:11:\"login_icons\";s:5:\"label\";s:22:\"login_primary_btn_word\";s:5:\"Login\";s:19:\"login_secondary_btn\";s:1:\"1\";s:24:\"login_secondary_btn_word\";s:8:\"Register\";s:23:\"login_secondary_btn_url\";s:0:\"\";s:22:\"login_forgot_pass_link\";s:1:\"1\";s:21:\"login_show_rememberme\";s:1:\"1\";s:18:\"current_url_method\";s:11:\"SERVER_NAME\";s:21:\"advanced_denied_roles\";s:0:\"\";s:14:\"enable_timebot\";s:1:\"1\";s:14:\"disable_minify\";s:1:\"0\";s:12:\"disable_menu\";s:1:\"0\";s:19:\"js_css_exlcude_home\";s:1:\"0\";s:17:\"enable_custom_css\";s:1:\"0\";s:14:\"allow_tracking\";s:1:\"0\";s:24:\"addon_bp_avatar_transfer\";s:0:\"\";s:19:\"access_exclude_uris\";a:0:{}s:14:\"js_css_exclude\";a:0:{}s:14:\"js_css_include\";a:0:{}}','yes'),(1699,'um_first_setup_roles','1','yes'),(1700,'um_hashed_passwords_fix','1','yes'),(1705,'redux_version_upgraded_from','3.5.4.3','yes'),(1706,'_transient_timeout__redux_activation_redirect','1444332316','no'),(1707,'_transient__redux_activation_redirect','1','no'),(5576,'gd-bbpress-tools','a:41:{s:7:\"version\";s:5:\"1.7.1\";s:4:\"date\";s:11:\"2015.07.04.\";s:5:\"build\";i:1752;s:6:\"status\";s:6:\"stable\";s:10:\"product_id\";s:16:\"gd-bbpress-tools\";s:7:\"edition\";s:4:\"free\";s:8:\"revision\";i:0;s:18:\"upgrade_to_pro_170\";i:1;s:14:\"include_always\";i:0;s:10:\"include_js\";i:1;s:11:\"include_css\";i:1;s:14:\"toolbar_active\";i:1;s:19:\"toolbar_super_admin\";i:1;s:13:\"toolbar_roles\";N;s:16:\"allowed_tags_div\";i:1;s:20:\"admin_disable_active\";i:0;s:25:\"admin_disable_super_admin\";i:1;s:19:\"admin_disable_roles\";N;s:12:\"quote_active\";i:1;s:14:\"quote_location\";s:6:\"header\";s:12:\"quote_method\";s:6:\"bbcode\";s:17:\"quote_super_admin\";i:1;s:11:\"quote_roles\";N;s:14:\"bbcodes_active\";i:1;s:14:\"bbcodes_notice\";i:1;s:20:\"bbcodes_bbpress_only\";i:0;s:27:\"bbcodes_special_super_admin\";i:1;s:21:\"bbcodes_special_roles\";N;s:22:\"bbcodes_special_action\";s:4:\"info\";s:19:\"bbcodes_deactivated\";a:0:{}s:16:\"signature_active\";i:1;s:16:\"signature_length\";i:512;s:21:\"signature_super_admin\";i:1;s:15:\"signature_roles\";N;s:16:\"signature_method\";s:6:\"bbcode\";s:30:\"signature_enhanced_super_admin\";i:1;s:24:\"signature_enhanced_roles\";N;s:34:\"signature_buddypress_profile_group\";i:1;s:23:\"view_mostreplies_active\";i:1;s:24:\"view_latesttopics_active\";i:1;s:25:\"view_searchresults_active\";i:1;}','yes'),(6028,'widget_soundcloud_master_widget_buttons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1709,'um_options-transients','a:3:{s:14:\"changed_values\";a:1:{s:9:\"core_user\";s:3:\"367\";}s:9:\"last_save\";i:1439845638;s:13:\"last_compiler\";i:1439845535;}','yes'),(3138,'um_cache_userdata_34','a:49:{s:2:\"ID\";i:34;s:10:\"user_login\";s:14:\"SusanaBhr24991\";s:9:\"user_pass\";s:34:\"$P$Bx0E6FlfpnxNhXWW6nVcIADOSX/RAc/\";s:13:\"user_nicename\";s:14:\"susanabhr24991\";s:10:\"user_email\";s:29:\"jephthahhasychakbjj@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 11:30:40\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"SusanaBhr24991\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:14:\"SusanaBhr24991\";s:10:\"first_name\";s:6:\"Susana\";s:9:\"last_name\";s:6:\"Colvin\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"CT\";s:5:\"addr2\";s:19:\"Ul. Targ Weglowy 84\";s:4:\"city\";s:6:\"Gdansk\";s:8:\"thestate\";s:2:\"NA\";s:3:\"zip\";s:6:\"80-836\";s:7:\"country\";s:6:\"Poland\";s:6:\"phone1\";s:12:\"67 325 33 23\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3060,'um_cache_userdata_53','a:49:{s:2:\"ID\";i:53;s:10:\"user_login\";s:14:\"PearlRayner010\";s:9:\"user_pass\";s:34:\"$P$Bjkp0af1bYZHyQ/nvDqf0cY6.xfbyr/\";s:13:\"user_nicename\";s:14:\"pearlrayner010\";s:10:\"user_email\";s:22:\"apocarli1970@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 20:35:17\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"PearlRayner010\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:14:\"PearlRayner010\";s:10:\"first_name\";s:5:\"Pearl\";s:9:\"last_name\";s:6:\"Rayner\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"HX\";s:5:\"addr2\";s:22:\"85 Rue Reine Elisabeth\";s:4:\"city\";s:6:\"Menton\";s:8:\"thestate\";s:6:\"CENTRE\";s:3:\"zip\";s:4:\"6500\";s:7:\"country\";s:6:\"France\";s:6:\"phone1\";s:14:\"04.63.80.22.63\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3061,'um_cache_userdata_52','a:49:{s:2:\"ID\";i:52;s:10:\"user_login\";s:15:\"PorterGreenwell\";s:9:\"user_pass\";s:34:\"$P$BnW3Ixu3qIL5uxBIUSgoM8p1ygtz3l.\";s:13:\"user_nicename\";s:15:\"portergreenwell\";s:10:\"user_email\";s:22:\"emfireta1973@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 19:57:40\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"PorterGreenwell\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"PorterGreenwell\";s:10:\"first_name\";s:6:\"Porter\";s:9:\"last_name\";s:9:\"Greenwell\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"ET\";s:5:\"addr2\";s:26:\"Piazza Principe Umberto 64\";s:4:\"city\";s:8:\"Lutirano\";s:8:\"thestate\";s:2:\"FI\";s:3:\"zip\";s:5:\"50034\";s:7:\"country\";s:5:\"Italy\";s:6:\"phone1\";s:12:\"0330 7992761\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3062,'um_cache_userdata_51','a:49:{s:2:\"ID\";i:51;s:10:\"user_login\";s:15:\"EulaliaGentry40\";s:9:\"user_pass\";s:34:\"$P$BTEXC1GDmgC25LzR0TOucD3L9.vC960\";s:13:\"user_nicename\";s:15:\"eulaliagentry40\";s:10:\"user_email\";s:25:\"anarmiccans1973@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 19:22:19\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"EulaliaGentry40\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"EulaliaGentry40\";s:10:\"first_name\";s:7:\"Eulalia\";s:9:\"last_name\";s:6:\"Gentry\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"NB\";s:5:\"addr2\";s:17:\"Herentalsebaan 36\";s:4:\"city\";s:7:\"Brussel\";s:8:\"thestate\";s:3:\"WBR\";s:3:\"zip\";s:4:\"1030\";s:7:\"country\";s:7:\"Belgium\";s:6:\"phone1\";s:13:\"0478 72 62 73\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3063,'um_cache_userdata_50','a:49:{s:2:\"ID\";i:50;s:10:\"user_login\";s:13:\"LavadaGilmore\";s:9:\"user_pass\";s:34:\"$P$BR7mTTGBXxzXSwvr45FblmOj5Sz5S/.\";s:13:\"user_nicename\";s:13:\"lavadagilmore\";s:10:\"user_email\";s:25:\"signtabcori1987@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 16:27:54\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"LavadaGilmore\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:13:\"LavadaGilmore\";s:10:\"first_name\";s:6:\"Lavada\";s:9:\"last_name\";s:7:\"Gilmore\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"XS\";s:5:\"addr2\";s:19:\"Via Delle Coste 121\";s:4:\"city\";s:15:\"Collalto Sabino\";s:8:\"thestate\";s:2:\"RI\";s:3:\"zip\";s:4:\"2022\";s:7:\"country\";s:5:\"Italy\";s:6:\"phone1\";s:12:\"0362 9258464\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3064,'um_cache_userdata_49','a:49:{s:2:\"ID\";i:49;s:10:\"user_login\";s:11:\"EmerySalter\";s:9:\"user_pass\";s:34:\"$P$BTD7rrhS40EFzcLUKvPmhF5xEQXq2d/\";s:13:\"user_nicename\";s:11:\"emerysalter\";s:10:\"user_email\";s:27:\"contrectneche1987@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 15:55:54\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:11:\"EmerySalter\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:11:\"EmerySalter\";s:10:\"first_name\";s:5:\"Emery\";s:9:\"last_name\";s:6:\"Salter\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"SN\";s:5:\"addr2\";s:16:\"4038 Coal Street\";s:4:\"city\";s:11:\"Coudersport\";s:8:\"thestate\";s:2:\"PA\";s:3:\"zip\";s:5:\"16915\";s:7:\"country\";s:13:\"United States\";s:6:\"phone1\";s:12:\"814-274-7470\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3065,'um_cache_userdata_48','a:49:{s:2:\"ID\";i:48;s:10:\"user_login\";s:15:\"WilburKashiwagi\";s:9:\"user_pass\";s:34:\"$P$B5bW6yQlKwaXylcoX/mS5rUDY5G.RJ0\";s:13:\"user_nicename\";s:15:\"wilburkashiwagi\";s:10:\"user_email\";s:27:\"gertudehitsmandcb@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 15:50:58\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"WilburKashiwagi\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"WilburKashiwagi\";s:10:\"first_name\";s:6:\"Wilbur\";s:9:\"last_name\";s:9:\"Kashiwagi\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"VB\";s:5:\"addr2\";s:24:\"48 Cours Marechal-Joffre\";s:4:\"city\";s:16:\"Decines-Charpieu\";s:8:\"thestate\";s:6:\"CENTRE\";s:3:\"zip\";s:5:\"69150\";s:7:\"country\";s:6:\"France\";s:6:\"phone1\";s:14:\"04.48.23.30.32\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3066,'um_cache_userdata_47','a:49:{s:2:\"ID\";i:47;s:10:\"user_login\";s:10:\"UKZJeannie\";s:9:\"user_pass\";s:34:\"$P$BsoqajKbsi.QEJ7mTBDWsAgD5g6KgM/\";s:13:\"user_nicename\";s:10:\"ukzjeannie\";s:10:\"user_email\";s:21:\"jkbuttarimw@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 15:46:41\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"UKZJeannie\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:10:\"UKZJeannie\";s:10:\"first_name\";s:7:\"Jeannie\";s:9:\"last_name\";s:6:\"Bisbee\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"NV\";s:5:\"addr2\";s:17:\"96 Farnell Street\";s:4:\"city\";s:10:\"The Shades\";s:8:\"thestate\";s:3:\"NSW\";s:3:\"zip\";s:4:\"2866\";s:7:\"country\";s:9:\"Australia\";s:6:\"phone1\";s:14:\"(02) 4004 0230\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3067,'um_cache_userdata_46','a:49:{s:2:\"ID\";i:46;s:10:\"user_login\";s:13:\"MickeyBivins5\";s:9:\"user_pass\";s:34:\"$P$BKn8t9FWyzMVoQ6Aud6D8tkgid/Wfy0\";s:13:\"user_nicename\";s:13:\"mickeybivins5\";s:10:\"user_email\";s:21:\"xschadeliws@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 15:19:59\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"MickeyBivins5\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:13:\"MickeyBivins5\";s:10:\"first_name\";s:6:\"Mickey\";s:9:\"last_name\";s:6:\"Bivins\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"UY\";s:5:\"addr2\";s:17:\"97 Rue De L\'aigle\";s:4:\"city\";s:19:\"La Garenne-Colombes\";s:8:\"thestate\";s:2:\"JS\";s:3:\"zip\";s:5:\"92250\";s:7:\"country\";s:6:\"France\";s:6:\"phone1\";s:14:\"01.01.40.12.37\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3068,'um_cache_userdata_45','a:49:{s:2:\"ID\";i:45;s:10:\"user_login\";s:11:\"JamalBorges\";s:9:\"user_pass\";s:34:\"$P$BejWomDDeOFZgQVHqznFDssL02yb6j/\";s:13:\"user_nicename\";s:11:\"jamalborges\";s:10:\"user_email\";s:26:\"rochellbowserwuu@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 14:51:02\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:11:\"JamalBorges\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:11:\"JamalBorges\";s:10:\"first_name\";s:5:\"Jamal\";s:9:\"last_name\";s:6:\"Borges\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"LT\";s:5:\"addr2\";s:16:\"Kornquaderweg 52\";s:4:\"city\";s:11:\"Remetschwil\";s:8:\"thestate\";s:2:\"NA\";s:3:\"zip\";s:4:\"5453\";s:7:\"country\";s:11:\"Switzerland\";s:6:\"phone1\";s:13:\"056 986 62 88\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3069,'um_cache_userdata_44','a:49:{s:2:\"ID\";i:44;s:10:\"user_login\";s:10:\"LesliManey\";s:9:\"user_pass\";s:34:\"$P$BFhxpWQ/3atxFx83LuBpry/zDlW8uw/\";s:13:\"user_nicename\";s:10:\"leslimaney\";s:10:\"user_email\";s:21:\"ilmcinernyg@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 14:38:20\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"LesliManey\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:10:\"LesliManey\";s:10:\"first_name\";s:5:\"Lesli\";s:9:\"last_name\";s:5:\"Maney\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"RE\";s:5:\"addr2\";s:20:\"Lutzelfluhstrasse 93\";s:4:\"city\";s:6:\"Wilhof\";s:8:\"thestate\";s:2:\"QO\";s:3:\"zip\";s:4:\"8322\";s:7:\"country\";s:11:\"Switzerland\";s:6:\"phone1\";s:13:\"044 529 44 63\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3070,'um_cache_userdata_43','a:49:{s:2:\"ID\";i:43;s:10:\"user_login\";s:13:\"ShonaStratton\";s:9:\"user_pass\";s:34:\"$P$BXsHCraGfT626YJcX8rUhsdyd8Cw0X/\";s:13:\"user_nicename\";s:13:\"shonastratton\";s:10:\"user_email\";s:20:\"qpportetnj@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 13:58:46\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"ShonaStratton\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:13:\"ShonaStratton\";s:10:\"first_name\";s:5:\"Shona\";s:9:\"last_name\";s:8:\"Stratton\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"TB\";s:5:\"addr2\";s:17:\"Linzer Strasse 20\";s:4:\"city\";s:9:\"Bachental\";s:8:\"thestate\";s:5:\"TYROL\";s:3:\"zip\";s:4:\"6212\";s:7:\"country\";s:7:\"Austria\";s:6:\"phone1\";s:14:\"0680 838 84 83\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(2040,'um_flush_rules','1','yes'),(27071,'_transient_timeout_jpp_li_21fa00d9edb5508a8111dd611ab89ea9','1443848083','no'),(27072,'_transient_jpp_li_21fa00d9edb5508a8111dd611ab89ea9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (200.9.255.32)\";s:17:\"seconds_remaining\";i:1054;s:16:\"blocked_attempts\";s:3:\"245\";s:6:\"expire\";i:1443848083;}','no'),(29078,'_transient_timeout_jpp_li_ae1da14dbac0abde88cf6b0a0461deea','1444185070','no'),(12831,'_transient_timeout_cff_timeline_event_json_748752281938213','1440683061','no'),(12832,'_transient_cff_timeline_event_json_748752281938213','{\"description\":\"Celebrating Our First Student Sunday Supper of the year: Earth to Clark is an organically formed, high energy band based out of Beloit, WI. They blend a wide variety of musical styling\'s. Based around Funkedelic Rock Reggae Hippie Hip-hop; their positive, thought provoking lyrics and flowing guitar riffs are brought together by a solid rhythm section that provides a fresh experience for lovers of all music\",\"end_time\":\"2015-08-23T20:00:00-0500\",\"is_date_only\":false,\"location\":\"Bushel & Peck\'s Local Market\",\"name\":\"Earth To Clark ~ Live Music, All Original Funk\",\"owner\":{\"name\":\"Bushel & Peck\'s Local Market\",\"category\":\"Local Business\",\"category_list\":[{\"id\":\"176527262444235\",\"name\":\"Farmers Market\"},{\"id\":\"273819889375819\",\"name\":\"Restaurant\"},{\"id\":\"169207329791658\",\"name\":\"Grocery Store\"}],\"id\":\"105412761844\"},\"privacy\":\"OPEN\",\"start_time\":\"2015-08-23T18:00:00-0500\",\"timezone\":\"America\\/Chicago\",\"updated_time\":\"2015-08-21T21:27:23+0000\",\"venue\":{\"city\":\"Beloit\",\"country\":\"United States\",\"latitude\":42.4995804,\"longitude\":-89.0360565,\"state\":\"WI\",\"street\":\"328 State St\",\"zip\":\"53511\",\"id\":\"105412761844\"},\"id\":\"748752281938213\"}','no'),(9300,'widget_blog_subscription','a:2:{i:2;a:6:{s:5:\"title\";s:27:\"Subscribe to Blog via Email\";s:14:\"subscribe_text\";s:99:\"Enter your email address to subscribe to this blog and receive notifications of new posts by email.\";s:21:\"subscribe_placeholder\";s:13:\"Email Address\";s:16:\"subscribe_button\";s:9:\"Subscribe\";s:15:\"success_message\";s:127:\"Success! An email was just sent to confirm your subscription. Please find the email now and click activate to start subscribing\";s:22:\"show_subscribers_total\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(29882,'_transient_timeout_jpp_li_9eabbecf5760170de26864d1679fccc7','1444282618','no'),(9341,'widget_wpcom_social_media_icons_widget','a:2:{i:2;a:9:{s:5:\"title\";s:6:\"Social\";s:17:\"facebook_username\";s:0:\"\";s:16:\"twitter_username\";s:0:\"\";s:18:\"instagram_username\";s:0:\"\";s:18:\"pinterest_username\";s:0:\"\";s:17:\"linkedin_username\";s:0:\"\";s:15:\"github_username\";s:0:\"\";s:16:\"youtube_username\";s:0:\"\";s:14:\"vimeo_username\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(9365,'widget_twitter_timeline','a:2:{i:2;a:9:{s:5:\"title\";s:20:\"Follow me on Twitter\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:11:\"tweet-limit\";i:10;s:9:\"widget-id\";s:18:\"635284292143153152\";s:10:\"link-color\";s:7:\"#f96e5b\";s:12:\"border-color\";s:7:\"#e8e8e8\";s:5:\"theme\";s:5:\"light\";s:6:\"chrome\";a:0:{}}s:12:\"_multiwidget\";i:1;}','yes'),(30229,'_transient_timeout_jpp_li_fe9599170dce6a3c510c0e85d00b846a','1444334224','no'),(10012,'widget_widget_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(10015,'widget_wpcom-goodreads','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(10016,'widget_grofile','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(10017,'widget_image','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(10018,'widget_rss_links','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(10019,'widget_top-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(29909,'_transient_timeout_jpp_li_0102dc5a1f4c0c5769b71e1d58579b79','1444283829','no'),(29910,'_transient_jpp_li_0102dc5a1f4c0c5769b71e1d58579b79','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (95.215.44.30)\";s:17:\"seconds_remaining\";i:900;s:16:\"blocked_attempts\";s:3:\"300\";s:6:\"expire\";i:1444283829;}','no'),(15611,'_transient_timeout_cff_timeline_event_json_1025169777507096','1441132046','no'),(15612,'_transient_cff_timeline_event_json_1025169777507096','{\"description\":\"Come join The Beloit Podcast as we live stream \\u0040 the grand opening of Foster\'s Gaming & Collectibles. You can catch the live stream at thebeloitpod.com, youtube, Facebook, and Twitter.\",\"end_time\":\"2015-08-26T20:00:00-0500\",\"is_date_only\":false,\"location\":\"Broadhead Wis.\",\"name\":\"Foster\'s Gaming & Collectibles Grand Opening\",\"owner\":{\"name\":\"The Beloit Podcast\",\"category\":\"Education Website\",\"id\":\"876720959038087\"},\"privacy\":\"OPEN\",\"start_time\":\"2015-08-26T12:00:00-0500\",\"timezone\":\"America\\/Chicago\",\"updated_time\":\"2015-08-26T14:15:49+0000\",\"venue\":{\"city\":\"Brodhead\",\"country\":\"United States\",\"latitude\":42.62596461,\"longitude\":-89.36937651,\"state\":\"WI\",\"zip\":\"53520\"},\"id\":\"1025169777507096\"}','no'),(26729,'_transient_jpp_li_261eaf22311e310875a73dd86f0fdb9e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.65.135.228)\";s:17:\"seconds_remaining\";i:69;s:16:\"blocked_attempts\";s:3:\"225\";s:6:\"expire\";i:1443750553;}','no'),(21789,'_site_transient_timeout_browser_4fda3f27009155f52c27413f6db6373b','1442599388','yes'),(29357,'_transient_jpp_li_5643b491a47d29a76a812aafc40b917a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (46.148.18.74)\";s:17:\"seconds_remaining\";i:2389;s:16:\"blocked_attempts\";s:3:\"289\";s:6:\"expire\";i:1444215189;}','no'),(28972,'_transient_timeout_jpp_li_acb7e5ec1cd37bc6ba76d225dedbafff','1444165442','no'),(28973,'_transient_jpp_li_acb7e5ec1cd37bc6ba76d225dedbafff','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (89.234.157.254)\";s:17:\"seconds_remaining\";i:3302;s:16:\"blocked_attempts\";s:3:\"282\";s:6:\"expire\";i:1444165442;}','no'),(3020,'_transient_timeout_feed_2b16a4f9a2b7110ce37a7c1a0e3bbb94','1439387017','no'),(3021,'_transient_feed_2b16a4f9a2b7110ce37a7c1a0e3bbb94','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Ultimate Member » 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://ultimatemember.com\";s: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:48:\"A Free Community & User Profile WordPress 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Aug 2015 01:15:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://wordpress.org/?v=4.2.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Win a free one year core extensions bundle license\";s: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:76:\"https://ultimatemember.com/win-free-one-year-core-extensions-bundle-license/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://ultimatemember.com/win-free-one-year-core-extensions-bundle-license/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Jul 2015 14:04:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=64438\";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:496:\"<p>Good news! We’re running a giveway where you can win a FREE one year core extensions bundle license. To enter the giveway all you need to do is complete one of the actions in the widget below. Each action gives you...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/win-free-one-year-core-extensions-bundle-license/\">Win a free one year core extensions bundle license</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1447:\"<p>Good news! We’re running a giveway where you can win a FREE one year <a href=\"https://ultimatemember.com/core-extensions-bundle/\">core extensions bundle</a> license.</p>\n<p>To enter the giveway all you need to do is complete one of the actions in the widget below. Each action gives you a point value so the more actions you complete the higher changes you have of winning the contest.</p>\n<p>You can do the following to enter the competition:</p>\n<ul>\n<li>Follow us to Twitter (worth 1 point/entry)</li>\n<li>Like us on Facebook (worth 1 point/entry)</li>\n<li>Tweet about this giveway (worth 2 points/entries)</li>\n</ul>\n<p>The giveway will run only until the end of Wednesday (11:59pm).</p>\n<p>If you’ve already purchased the bundle you can still enter the giveway and if you are the lucky winner you will receive a free bundle renewal license when your bundle license expires.</p>\n<p><a id=\"rcwidget_uz640ktd\" class=\"rcptr\" href=\"http://www.rafflecopter.com/rafl/display/fbeae2a01/\" rel=\"nofollow\" data-raflid=\"fbeae2a01\" data-theme=\"classic\" data-template=\"\">a Rafflecopter giveaway</a></p>\n<p><script src=\"//widget-prime.rafflecopter.com/launch.js\"></script></p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/win-free-one-year-core-extensions-bundle-license/\">Win a free one year core extensions bundle license</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://ultimatemember.com/win-free-one-year-core-extensions-bundle-license/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";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:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Inside Ultimate Member: June 2015\";s: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://ultimatemember.com/inside-ultimate-member-june-2015/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://ultimatemember.com/inside-ultimate-member-june-2015/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jul 2015 15:12: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=55776\";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:465:\"<p>Our best month yet for sales, a focus on improvements to core version and a boost to sales by announcing a price rise. It has been a quieter month in terms of development of new extensions but here’s how we have got...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/inside-ultimate-member-june-2015/\">Inside Ultimate Member: June 2015</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6826:\"<p>Our best month yet for sales, a focus on improvements to core version and a boost to sales by announcing a price rise. It has been a quieter month in terms of development of new extensions but here’s how we have got on during the month of June.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">E-commerce Metrics</span></p>\n<p style=\"text-align: left;\">Our total revenue for the month of June was $24,628, which is a 37.7% increase from May where revenue was $17,882.</p>\n<p style=\"text-align: left;\">The revenue was generated from 222 orders and we have been able to increase our average spend per customer to $95. This is an increase of $12 from April when it was $83.</p>\n<p style=\"text-align: left;\">The average daily revenue for the month was $821. An increase of $245 from May.</p>\n<p style=\"text-align: left;\">If you want to see more of our metrics you can view them in real-time via our <a href=\"https://ultimatemember.com/open-metrics/\">open metics dashboard</a>.</p>\n<p style=\"text-align: left;\"><img class=\"aligncenter wp-image-55901 size-full\" src=\"https://ultimatemember.com/wp-content/uploads/2015/07/Screen-Shot-2015-07-01-at-01.03.43.png\" alt=\"\" width=\"1696\" height=\"1174\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Active installs</span></p>\n<p style=\"text-align: left;\">This month we passed a big milestone for our plugin with it now being installed on over 10,000 sites. It took us just over 5 months to reach 10,000 installs and we are happy to see so many people using Ultimate Member on their sites.</p>\n<p style=\"text-align: left;\">We had just over 600 paying customers when we passed this milestone which gives us a conversion rate of around 6%.</p>\n<p style=\"text-align: left;\">Whilst with higher pricing or enough users a conversion rate in the single digits can be profitable it would be nice to see more users of the free version wanting to buy an extension or two.</p>\n<p style=\"text-align: left;\">So our conversion rate is something we would like to improve over the coming months and our aim is to increase this to around 10% by the end of the year.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Extensions Released</span></p>\n<p style=\"text-align: left;\">This month we finished off one new extension – our WooCommerce integration. However, we did not release this extension to the public until the start of July. The initial release of this extension was only made available to users who had purchased our <a href=\"https://ultimatemember.com/core-extensions-bundle/\">extensions bundle</a>.</p>\n<p style=\"text-align: left;\">This is part of our new extension release scheme that allows us to get important user feedback from our bundle users for a few weeks before public release.</p>\n<p style=\"text-align: left;\">As part of our release of the WooCommerce extension, we announced on the 11th of June that once WooCommerce was released we would also be increasing the price of the bundle to $199.</p>\n<p style=\"text-align: left;\">As you can see from chart below this announcement helped to increase sales this month especially on the last day of the month where we had our highest daily revenue of over $1750.</p>\n<p style=\"text-align: left;\"><img class=\"aligncenter wp-image-55900 size-full\" src=\"https://ultimatemember.com/wp-content/uploads/2015/07/Screen-Shot-2015-07-01-at-01.03.24.png\" alt=\"\" width=\"2530\" height=\"1036\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Free Support</span></p>\n<p style=\"text-align: left;\">This month we’ve had 504 new topics created on our forum. That’s an average of 16.8 new topics created each day and is a decrease of 18% from May. This brings the total number of topics created on our forum to 2620.</p>\n<p style=\"text-align: left;\">On the WP plugin forum 93 new topics were created last month, which means we have now answered 411 topics on the WP plugin forum since we first released the plugin. This brings the total number of support tickets we’ve dealt with to 3031 since the 21st of January.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Mailing List</span></p>\n<p style=\"text-align: left;\">Our mailing list now stands at 5,200 people with 1514 people subscribing to our list in June. This is the most amount of users we have had sign up in one month since we launched the plugin in January.<a href=\"https://ultimatemember.com/wp-content/uploads/2015/06/Screen-Shot-2015-05-31-at-21.48.24.png\"><br />\n</a> <img class=\"aligncenter wp-image-55902 size-full\" src=\"https://ultimatemember.com/wp-content/uploads/2015/07/Screen-Shot-2015-07-01-at-21.19.20.png\" alt=\"\" width=\"956\" height=\"600\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Website traffic</span></p>\n<p style=\"text-align: left;\">This month we’ve had 31,905 sessions and 15,170 users on the site which resulted in 156,645 page views.</p>\n<p style=\"text-align: left;\">Compared to May these numbers are down but as I explained in last months post our visitor stats were high in May due to an issue with Stripe and a blog post making its way onto Hacker News.</p>\n<p style=\"text-align: left;\"><img class=\"aligncenter wp-image-55903 size-full\" src=\"https://ultimatemember.com/wp-content/uploads/2015/07/Screen-Shot-2015-07-01-at-21.21.43.png\" alt=\"\" width=\"2046\" height=\"506\" /></p>\n<p style=\"text-align: left;\">A breakdown of our traffic sources with Google, Direct and WordPress.org bringing in the most news users.</p>\n<p style=\"text-align: left;\"><img class=\"aligncenter wp-image-55904 size-full\" src=\"https://ultimatemember.com/wp-content/uploads/2015/07/Screen-Shot-2015-07-01-at-21.23.52.png\" alt=\"\" width=\"2072\" height=\"978\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Summary</span></p>\n<p>Overall, June has been a very good month for us. We’ve almost doubled our monthly revenue in the space of two months and whilst it is hard to see a monthly grow rate of 30/40% continue long-term, it is great to see our business continue to grow.</p>\n<p>Lastly, I just want to mention that launching and running a WordPress plugin business is stressful and there is no guarantee of user adoption or users becoming paying customers. Thankfully, Ultimate Member is bringing in enough revenue to allow the two of us to work full-time on the business, which ultimately means more developement and better support.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/inside-ultimate-member-june-2015/\">Inside Ultimate Member: June 2015</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://ultimatemember.com/inside-ultimate-member-june-2015/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WooCommerce + Changes to Bundle\";s: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://ultimatemember.com/woocommerce-changes-bundle/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://ultimatemember.com/woocommerce-changes-bundle/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Jun 2015 16:05:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=48586\";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:520:\"<p>Today we finished the first version of the WooCommerce extension and with the completion of our latest extension, we’re also making a couple of changes to our core extensions bundle. Early Access to Extensions The first change we’re making is introducing an early access...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/woocommerce-changes-bundle/\">WooCommerce + Changes to Bundle</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3758:\"<p>Today we finished the first version of the WooCommerce extension and with the completion of our latest extension, we’re also making a couple of changes to our core extensions bundle.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Early Access to Extensions</span></p>\n<p style=\"text-align: left;\">The first change we’re making is introducing an early access system for new extensions which is only available to customers who have purchased the bundle.</p>\n<p style=\"text-align: left;\">What this means is that anyone who has bought the bundle will get access to new extensions weeks before we put them on general sale.</p>\n<p style=\"text-align: left;\">This allows us to get important user feedback from a limited number of customers before we put it on sale to the world.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Price Increase</span></p>\n<p style=\"text-align: left;\">The second change will occur when we release the WooCommerce integration as a separate extension. When that happens, the price of the bundle will go up to $199.</p>\n<p style=\"text-align: left;\">This is to take into account the ever-increasing value of the bundle as more extensions are added to it and even with the new price of $199 the bundle will still provide a saving of over $650.</p>\n<p style=\"text-align: left;\">Even if you only use Ultimate Member on one site it is still significantly cheaper to buy the bundle at $199 rather than buy each extension separately.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">WooCommerce</span></p>\n<p style=\"text-align: left;\">We have just released the first version of our latest extension which integrates Ultimate Member with WooCommerce.</p>\n<p style=\"text-align: left;\">The initial release integrates the core features of WooCommerce with Ultimate Member enabling you to run an e-commerce site alongside a community based site. The extension has the following features:</p>\n<ul>\n<li style=\"text-align: left;\">Integrates users purchases tab in user profile</li>\n<li style=\"text-align: left;\">Integrates product reviews tab in user profile</li>\n<li style=\"text-align: left;\">Display and view user orders from account page</li>\n<li style=\"text-align: left;\">Manage shipping/billing address from account page</li>\n<li style=\"text-align: left;\">Display total spent by user as profile field or on directory</li>\n<li style=\"text-align: left;\">Display total orders by user as profile field, or in directory</li>\n<li style=\"text-align: left;\">Allow user to have a specific role if they purchase a specific product</li>\n<li style=\"text-align: left;\">Allow user to have a specific role if he purchase any product</li>\n<li style=\"text-align: left;\">Options to disable any of the profile or account tabs based on role</li>\n</ul>\n<p style=\"text-align: left;\">The WooCommerce extension is currently only available to users who have purchased the bundle. If you want access to the extension now you can purchase the bundle, which will allow you to provide early user feedback that will help us to shape future updates to the extension.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Time Frame</span></p>\n<p style=\"text-align: left;\">We will be releasing WooCommerce and increasing the price of the bundle on the 1st of July. So if you want to purchase an annual license for the bundle at the current price of $149 then now is the time to do it.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/woocommerce-changes-bundle/\">WooCommerce + Changes to Bundle</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://ultimatemember.com/woocommerce-changes-bundle/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Inside Ultimate Member: May 2015\";s: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://ultimatemember.com/inside-ultimate-member-may-2015/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://ultimatemember.com/inside-ultimate-member-may-2015/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jun 2015 06:29:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=46991\";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:495:\"<p>Increases in revenue, changes to support pricing and a run in with Stripe. Here’s what has happened during the past month. E-commerce Metrics Our total revenue for the month of May was $17,882, which is a 40% increase from April where revenue was...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/inside-ultimate-member-may-2015/\">Inside Ultimate Member: May 2015</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7786:\"<p>Increases in revenue, changes to support pricing and a run in with Stripe. Here’s what has happened during the past month.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">E-commerce Metrics</span></p>\n<p style=\"text-align: left;\">Our total revenue for the month of May was $17,882, which is a 40% increase from April where revenue was $12,517.</p>\n<p style=\"text-align: left;\">The revenue was generated from 217 orders and we have been able to increase our average spend per customer to $83. This is an increase of $12 from April when it was $71.</p>\n<p style=\"text-align: left;\">The average daily revenue for the month was $576. An increase of $159 from April.</p>\n<p style=\"text-align: left;\">If you want to see more of our metrics you can view them in real-time via <a href=\"https://ultimatemember.com/open-metrics/\">open metics dashboard</a>.</p>\n<p style=\"text-align: left;\"><img class=\"aligncenter size-full wp-image-47005\" src=\"https://ultimatemember.com/wp-content/uploads/2015/06/Screen-Shot-2015-05-31-at-21.48.24.png\" alt=\"Screen Shot 2015-05-31 at 21.48.24\" width=\"1674\" height=\"1144\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Active installs</span></p>\n<p style=\"text-align: left;\">Ultimate Member continues to be installed on more sites and we passed 8,000 active installs on the 26th of May. We passed 6,000 active installs on the 27th of April meaning we have had over 2,000 new installs this month. This is roughly the same rate as the previous two months.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Extensions Released</span></p>\n<p style=\"text-align: left;\">In May we released one new extension. This was <a href=\"https://ultimatemember.com/extensions/private-messages/\">Private Messages</a> which was put on sale on the 11th of May. This was the biggest and most complex extension we have built so far and has brought the number of extensions we now have up to 12.</p>\n<p style=\"text-align: left;\">As you can see from the chart below, the release of private messages provided a boost to revenue with the next 13 days all having daily sales of over $500.</p>\n<p style=\"text-align: left;\">Interestingly, the extension itself has only been purchased 19 times bringing in revenue of $868. The real boost to revenue came from more core bundle extensions being bought after the release of the extension.</p>\n<p style=\"text-align: left;\"><img class=\"aligncenter size-full wp-image-47012\" src=\"https://ultimatemember.com/wp-content/uploads/2015/06/Screen-Shot-2015-05-31-at-21.48.03-1.png\" alt=\"Screen Shot 2015-05-31 at 21.48.03 (1)\" width=\"1811\" height=\"753\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Priority Support</span></p>\n<p style=\"text-align: left;\">When we first introduced priority support it was priced at $49 (45 day) and $149 (1 year). Most people who purchased support were opting for the 45 day support option.</p>\n<p style=\"text-align: left;\">After selling priority support at these prices for a month and looking at the amount of time required to help out the users who purchased support it worked out that those prices were not sustainable.</p>\n<p style=\"text-align: left;\">So in May we increased the prices to $99 and $199 to make providing priority support more sustainable.</p>\n<p style=\"text-align: left;\">This has resulted in a lot fewer purchases of priority support but since priority support has never been a significant revenue generator for us and takes up quite a bit of time it was important to make this change.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Free Support</span></p>\n<p style=\"text-align: left;\">This month we’ve had 635 new topics created on our forum. That’s an average of 20.5 new topics created each day and is an increase of 16.9% from April.</p>\n<p style=\"text-align: left;\">On the WP plugin forum 48 new topics were created last month, which means we have now answered 318 topics on the WP plugin forum since we first released the plugin. This brings the total number of support tickets we’ve dealt with to 2434 since the 21st of January.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Mailing List</span></p>\n<p style=\"text-align: left;\">We ended the month with 3846 subscribers which means 1470 people subscribed to our list in May with pretty much all of these subscribers coming from our plugin opt-in.</p>\n<p style=\"text-align: left;\">With around 2000 new active installs a month it suggests that around 70% of people who install the plugin are subscribing to tracking and our mailing list.<a href=\"https://ultimatemember.com/wp-content/uploads/2015/06/Screen-Shot-2015-05-31-at-21.48.03.png\"><br />\n</a> <a href=\"https://ultimatemember.com/wp-content/uploads/2015/06/Screen-Shot-2015-05-31-at-21.48.24.png\"><br />\n</a> <img class=\"aligncenter size-full wp-image-47006\" src=\"https://ultimatemember.com/wp-content/uploads/2015/06/Screen-Shot-2015-06-07-at-14.43.00.png\" alt=\"Screen Shot 2015-06-07 at 14.43.00\" width=\"860\" height=\"624\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Website traffic</span></p>\n<p style=\"text-align: left;\">This month we’ve had 36,897 sessions and 19,118 users on the site which resulted in 172,065 page views.</p>\n<p style=\"text-align: left;\">Compared to April, the number of sessions has increased by 48.9%, the number of users has increased by 99.6% and page views has increased by 11.25%.</p>\n<p style=\"text-align: left;\">The huge increase in sessions and users is the result of an unfortunate incident where we were temporarily banned from Stripe. I wrote a <a href=\"https://ultimatemember.com/startups-avoid-stripe/\">blog post</a> about it and a reader posted it to hacker news which brought in the massive spike in traffic which you can see below.</p>\n<p style=\"text-align: left;\">Fortunately we managed to get our <a href=\"https://ultimatemember.com/got-stripe-account-back/\">Stripe account back</a> without any significant damage to us. We did stop taking credit card payments for a few days but it is difficult to say if that caused the slowdown in sales for the last week of May.</p>\n<p style=\"text-align: left;\"><img class=\"aligncenter size-full wp-image-47003\" src=\"https://ultimatemember.com/wp-content/uploads/2015/06/Screen-Shot-2015-06-07-at-14.54.50.png\" alt=\"Screen Shot 2015-06-07 at 14.54.50\" width=\"2040\" height=\"508\" /></p>\n<p style=\"text-align: left;\">A breakdown of our traffic sources with Google and WordPress.org bringing in the most news users.</p>\n<p style=\"text-align: left;\"><img class=\"aligncenter size-full wp-image-47008\" src=\"https://ultimatemember.com/wp-content/uploads/2015/06/Screen-Shot-2015-06-07-at-15.10.44.png\" alt=\"Screen Shot 2015-06-07 at 15.10.44\" width=\"2120\" height=\"970\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Summary</span></p>\n<p>Overall, May has been a pretty good month for us with a significant rise in monthly revenue. The last week of the month sales were disappointing compared the previous two weeks but when considering the month as a whole then it has been a success.</p>\n<p>Hopefully we will be able to continue growing revenue over the coming month as we continue to release more extensions and add more value into the bundle. Feel free to share your thoughts in the comments below.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/inside-ultimate-member-may-2015/\">Inside Ultimate Member: May 2015</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://ultimatemember.com/inside-ultimate-member-may-2015/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"How we got our Stripe account 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://ultimatemember.com/got-stripe-account-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://ultimatemember.com/got-stripe-account-back/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 May 2015 21:47:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=44001\";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:488:\"<p>Yesterday I wrote a blog post called “Thinking of using Stripe for your startup? Think again.” which explained how we had been told by Stripe that we could no longer use their services. In this post I want to cover what has happened since...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/got-stripe-account-back/\">How we got our Stripe account back</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7509:\"<p>Yesterday I wrote a blog post called “<a href=\"https://ultimatemember.com/startups-avoid-stripe/\">Thinking of using Stripe for your startup? Think again.</a>” which explained how we had been told by Stripe that we could no longer use their services.</p>\n<p>In this post I want to cover what has happened since I published the post and how we got out Stripe account back.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Why I wrote the post</span></p>\n<p style=\"text-align: left;\">I took no pleasure in writing the blog post yesterday but felt I had no other option after having no success getting an answer via the Stripe support channels or privately via Twitter.</p>\n<p style=\"text-align: left;\">The only other option would have been to just accept the decision in the original email and move onto another payment processor.</p>\n<p style=\"text-align: left;\">But we didn’t want to do that.</p>\n<p style=\"text-align: left;\">The reason for this is we like Stripe, we like using them a lot. If we didn’t, we would have just moved on to a different payment processor.</p>\n<p style=\"text-align: left;\">The post was not intended to bash Stripe or damage their reputation in any way. Rather it was written as a last hope of getting a proper response from them before we had to accept their decision and move on.</p>\n<p style=\"text-align: left;\">Any frustrations or negativity that came across in the post was a result of the communication and support I had got after receiving the original email and had nothing to do with how Stripe actually works as a payments processor.</p>\n<p style=\"text-align: left;\">Because in that department Stripe excels.</p>\n<p style=\"text-align: left;\">If you had asked me last week if I would recommend using Stripe I would have said 100% yes. Yesterday morning maybe not but now today after everything that happened yesterday I would still definitely recommend using Stripe.</p>\n<p style=\"text-align: left;\">The reason for this is that after speaking to an employee at Stripe, I now know the actual reason why our account was closed.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">How we got our account back</span></p>\n<p style=\"text-align: left;\">After publishing the post, I sent a link to the post in a tweet to Patrick Collison, co-founder of Stripe.</p>\n<blockquote class=\"twitter-tweet tw-align-center\" lang=\"en-gb\">\n<p dir=\"ltr\" lang=\"en\"><a href=\"https://twitter.com/calumallison\">@calumallison</a> Hm, very sorry about this — am investigating; will follow up by email today.</p>\n<p>— Patrick Collison (@patrickc) <a href=\"https://twitter.com/patrickc/status/603939879194529793\">May 28, 2015</a></p></blockquote>\n<p>Patrick replied quickly to the tweet and not too much longer after that I received an email from an employee at Stripe who works in the risk department who offered to phone me and discuss why our account had been marked for closure.</p>\n<p>Basically our account had been flagged by their systems as being a fraudulent account with suspicious behaviour but after a 5 minute chat with Anurag from Stripe, I was able to explain the reasons why our account had been flagged and he was happy to revert the decision to close the account.</p>\n<p><script src=\"//platform.twitter.com/widgets.js\" async=\"\" charset=\"utf-8\"></script></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Why our account was closed</span></p>\n<p style=\"text-align: left;\">The reason for our account being closed was because Stripe suspected our account was a fraud account.</p>\n<p style=\"text-align: left;\">Whilst I was asked not to go into too many details of how Stripe monitors fraudulent behaviour, I can say that the main reason our account was automatically flagged by their systems was due to multi-country logins.</p>\n<p style=\"text-align: left;\">This was caused in part by the fact we are a fully remote company and work from different countries and also a mistake on our part by not properly monitoring our use of a VPN whilst testing out VAT rates on our shopping cart from different countries (the joys of VAT MOSS).</p>\n<p style=\"text-align: left;\">Because of this, the Stripe monitoring systems were correctly suspicious when they saw people logging in from several different countries.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Where mistakes were made</span></p>\n<p style=\"text-align: left;\">Clearly, this whole issue would not have arisen in the first place if we had not logged into Stripe from out with the UK. So for this part the fault lies with us, we should have been more careful when logging in.</p>\n<p style=\"text-align: left;\">The Stripe monitoring systems did what they were supposed to do which was to identify suspicious behaviour.</p>\n<p style=\"text-align: left;\">The only place, in my opinion where there has been a failure from Stripe is in the communication and lack of support that followed.</p>\n<p style=\"text-align: left;\">Whilst Anurag explained in the phone call how they can’t give too much information in the email as to why the account was to be closed, I had two issues with the original email:</p>\n<ol>\n<li style=\"text-align: left;\">The email felt very generic and after googling found that it was indeed a canned response email. I can understand it may not be feasible to write a tailored email each time this comes up for Stripe but the problem was the email led me to believe that the reason our account was being closed was because of the one chargeback we had for a fraudulent credit card payment.</li>\n<li style=\"text-align: left;\">The email provided no options for me to query the account closure. It was made out like this decision has been made and there is nothing you can do about it. Whilst I’m sure Stripe constantly look at how to improve their processes, making a simple change to the original email and providing an opportunity to get in touch if a mistake has been made would make a difference.</li>\n</ol>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Summary</span></p>\n<p style=\"text-align: left;\">Whilst we and I am sure Stripe would have preferred to have dealt with this through their support and not publicly, it did unfortunately take a blog post to get this resolved.</p>\n<p style=\"text-align: left;\">Thankfully for us we have got our account back with Stripe and we have learnt to be extra careful when logging in to our account.</p>\n<p style=\"text-align: left;\">For Stripe, hopefully this will lead to some discussions on how to improve the process around dealing with this and lead to some improvements that reduce the confusion and anxiety that can be felt when told your account is to be closed down.</p>\n<p style=\"text-align: left;\">Lastly, if you use Stripe or are thinking of using Stripe, just make sure you are careful with where and how you access your account because Stripe, like many other online payment processors rightly take security and fraud very seriously.</p>\n<p style=\"text-align: left;\">If you do that you will have a great experience using Stripe for your business and you should have no fear choosing to use Stripe.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/got-stripe-account-back/\">How we got our Stripe account back</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ultimatemember.com/got-stripe-account-back/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Thinking of using Stripe for your startup? Think again.\";s: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://ultimatemember.com/startups-avoid-stripe/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://ultimatemember.com/startups-avoid-stripe/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 May 2015 12:41:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=43855\";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:478:\"<p>UPDATE: The issue described in this post has been resolved with Stripe after a phone call from a Stripe employee. You can read new the blog post here. When we first started our business in March, we had to carefully consider...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/startups-avoid-stripe/\">Thinking of using Stripe for your startup? Think again.</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9975:\"<p><strong>UPDATE:</strong> <strong>The issue described in this post has been resolved with Stripe after a phone call from a Stripe employee. You can read new the blog post <a href=\"https://ultimatemember.com/got-stripe-account-back/\" target=\"_blank\">here</a>.</strong></p>\n<p>When we first started our business in March, we had to carefully consider what payment processors we would use to process payments for our <a href=\"https://ultimatemember.com/extensions/\">extensions</a>.</p>\n<p>After doing some research on various processors we opted to go with <a href=\"https://stripe.com/\" rel=\"nofollow\">Stripe</a>. It had fair pricing and was recommended by several people as being easy to use so seemed like a no brainer.</p>\n<p>We signed up to Stripe, entered in all the required personal and business details and we were good to go.</p>\n<p>Integrating it with our shopping cart was hassle free and the money we received was automatically being paid into our bank account.</p>\n<p>For over two months, not a single problem and it seemed like choosing to go with Stripe was a great decision.</p>\n<p>How wrong this would be.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Kicked off Stripe</span></p>\n<p style=\"text-align: left;\">Two days ago I woke up to the following email from Stripe informing me that we would no longer be able to use Stripe:</p>\n<hr />\n<p style=\"padding-left: 30px;\"><em><span style=\"font-size: 14px;\">Hi Calum,</span></em></p>\n<p style=\"padding-left: 30px;\"><span style=\"font-size: 14px;\"><em>Thanks for signing up with Stripe!</em></span></p>\n<p style=\"padding-left: 30px;\"><span style=\"font-size: 14px;\"><em>Unfortunately, we will need to stop offering service for ultimatemember.com. Stripe can only support users with a low risk of customer disputes–after reviewing your submitted information and website, it does seem like your site presents a higher level of risk than we can currently support.</em></span></p>\n<p style=\"padding-left: 30px;\"><span style=\"font-size: 14px;\"><em>That said, we understand that there may be some work involved with moving your business away from Stripe, and we’re happy to help out with this process by giving you 5 days to switch to a new provider. After that, you won’t be able to accept additional charges on your account. Because of the elevated dispute risk here, we do have to put your balance on reserve for the next 90 days, the industry-standard chargeback window. During this period, the funds will help cover any refunds or disputes that come in, and your remaining balance will transfer to your bank account when the window closes[1].</em></span></p>\n<p style=\"padding-left: 30px;\"><span style=\"font-size: 14px;\"><em>We’re sorry that we can’t offer ongoing service, and we wish you the best of luck with your business.</em></span></p>\n<p style=\"padding-left: 30px;\"><span style=\"font-size: 14px;\"><em>Best,</em></span><br />\n<span style=\"font-size: 14px;\"> <em> Les</em></span></p>\n<hr />\n<p>So overnight without warning Stripe had decided to stop us from using their services after 5 days.</p>\n<p>From reading the email you would assume that we must have a high dispute rate considering the reason given in the email was: “<em>it does seem like your site presents a higher level of risk than we can currently support.</em>”</p>\n<p>But we don’t. Since we started processing payments with Stripe over two months ago we’ve had only 1 chargeback from 246 successfully completed payments. That’s a dispute rate of 0.4% with the chargeback a result of a fraudulent credit card purchase.</p>\n<p>I found it hard to believe a dispute rate of 0.4% could deem our business to be too high risk for Stripe so I replied to the email asking why and did a Google search to see if this was a problem other businesses had experienced.</p>\n<p>That is when I found <a href=\"https://kinsta.com/blog/startups-avoid-stripe/\" rel=\"nofollow\">this blog post</a> by managed WordPress hosting company <a href=\"https://kinsta.com/\" rel=\"nofollow\">Kinsta</a>, where they also wrote about having being kicked off Stripe (they somehow managed to get back on Stripe).</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Stripe Support</span></p>\n<p style=\"text-align: left;\">I would have thought when receiving that email Stripe would have at least suggested to contact them if we thought there had been a mistake.</p>\n<p style=\"text-align: left;\">However, there was no prompt, nothing to suggest that this may be an error. It was simply, we are stopping you from using Stripe and that’s that.</p>\n<p style=\"text-align: left;\">Obviously I was not happy with receiving the email and couldn’t understand how with a 0.4% dispute rate they could deem us to be too high risk.</p>\n<p style=\"text-align: left;\">So I replied to the email. Didn’t hear anything back. I then went to their website to see if they had a phone number I could phone or a live chat so I could attempt to get an answer to why we were told we could no longer use Stripe.</p>\n<p style=\"text-align: left;\">Neither of these existed. Stripe only provides support via a contact form on their website.</p>\n<p style=\"text-align: left;\">After submitting a ticket via their contact form, we were told they will hopefully reply with 24 hours.</p>\n<p style=\"text-align: left;\">I also did something I don’t particularly like to do which was to Tweet a couple of people at Stripe. This included one person who works for Stripe in the UK and one of the co-founders of Stripe.</p>\n<p style=\"text-align: left;\">I know they are usually busy dealing with more important stuff and don’t have the time to respond to issues like this but after getting no responses from Stripe support so far I was getting a bit desperate.</p>\n<p style=\"text-align: left;\">Eventually, 36 hours after receiving the original email I got another email from Stripe:</p>\n<p style=\"text-align: left; padding-left: 30px;\"><em><span style=\"font-size: 14px;\">Hi there,</span></em></p>\n<p style=\"padding-left: 30px;\"><em><span style=\"font-size: 14px;\">Thank you for writing in. We’re legally required to do a review of every user that works with us here at Stripe, and during that review we came to the conclusion that we simply cannot work with your business going forward. We apologize for the frustration here, but we’re bound to the regulations given to us by our banking partners, which include definitions of what businesses we can and cannot work with, and so our hands are tied. We hope you’re able to find a payments processor that better suits you and your business, and if we can help with your move to a new service let us know.</span></em></p>\n<p style=\"padding-left: 30px;\"><em><span style=\"font-size: 14px;\">Best wishes,</span></em><br />\n<em><span style=\"font-size: 14px;\"> -Silas</span></em></p>\n<hr />\n<p>My hope that this email would shine a light on why we were being kicked off Stripe proved to be false.</p>\n<p>Again, we received some generic email response with the reason given that “<em>we’re bound to the regulations given to us by our banking partners, which include definitions of what businesses we can and cannot work with, and so our hands are tied.</em>”</p>\n<p>So it appears the reason is now the type of business we run. I checked their terms to see what sort of businesses they do not allow to use Stripe and no where did it mention selling WordPress related products was disallowed.</p>\n<p>In fact, many WordPress businesses use Stripe to process their payments so I know it can not be the case that the type of products we sell would prohibit us from selling with Stripe.</p>\n<p>Our business is also a registered limited company in the UK, so I fail to see how this could be an issue either.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Be Careful</span></p>\n<p style=\"text-align: left;\">Thankfully, our business does not rely solely on Stripe to take payments. We do not have a deep integration with Stripe and we were still able to take payments via PayPal.</p>\n<p style=\"text-align: left;\">However, we have had to stop taking credit card payments for the time being as Stripe has locked access to any remaining funds we have in our Stripe account for 3 months.</p>\n<p style=\"text-align: left;\">Luckily, we only have £1200 still in our Stripe account so it has not caused us any major cash flow problems.</p>\n<p>If you thinking of using Stripe for your WordPress business or startup, then make sure you have a contingency plan or you could find yourself waking up to the same email with no explanation for why it has happened.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Summary</span></p>\n<p>So with a dispute rate of 0.4% and us selling products that many other WordPress businesses sell through Stripe, we have been kicked off Stripe.</p>\n<p>We have yet to find out the real reason this has happened and from our experiences with support so far it does not look likely we will receive a proper response.</p>\n<p>Maybe there is something we have done that has caused this to happen, but whatever the reason it is not clear to us and we are currently considering an alternative payment processor to use.</p>\n<p>I have written this post to highlight what we have gone through and to make you aware that this could happen to your business.</p>\n<p>My hope is that this can still be resolved with Stripe as the using the payment processor has been hassle free until this week.</p>\n<p>I will update you if there are any further developments from Stripe.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/startups-avoid-stripe/\">Thinking of using Stripe for your startup? Think again.</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://ultimatemember.com/startups-avoid-stripe/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Inside Ultimate Member: April 2015\";s: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:61:\"https://ultimatemember.com/inside-ultimate-member-april-2015/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://ultimatemember.com/inside-ultimate-member-april-2015/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 May 2015 11:01: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=34482\";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:465:\"<p>New extensions, bundles of joy and a whole lot of support! This past month has flown by so let’s have a look back at the past 30 days. E-commerce Metrics Our total revenue for the month of April was $12,517 and we...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/inside-ultimate-member-april-2015/\">Inside Ultimate Member: April 2015</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9356:\"<p>New extensions, bundles of joy and a whole lot of support! This past month has flown by so let’s have a look back at the past 30 days.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">E-commerce Metrics</span></p>\n<p style=\"text-align: left;\">Our total revenue for the month of April was $12,517 and we are happy to have passed the $10,000 mark from our first full month of sales.</p>\n<p style=\"text-align: left;\">The revenue was generated from 217 orders and we have been able to increase our average spend per customer to $71. This is an increase of $18 from the end of March when it was $53.</p>\n<p style=\"text-align: left;\">The average daily revenue for the month was $417 and we had one day where revenue was over $1000.</p>\n<p style=\"text-align: left;\">If you want to see more of our metrics you can view them in real-time via <a href=\"https://ultimatemember.com/open-metrics/\">open metics dashboard</a>.</p>\n<p style=\"text-align: left;\"><img class=\"aligncenter size-full wp-image-34508\" src=\"https://ultimatemember.com/wp-content/uploads/2015/05/metrics.png\" alt=\"metrics\" width=\"957\" height=\"672\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Active installs</span></p>\n<p style=\"text-align: left;\">The core version of Ultimate Member continues to be installed on more sites and we passed 6,000 active installs on the 27th of April. We passed 4000 active installs on the 31st of March meaning we have had over 2,000 new installs this month.</p>\n<p style=\"text-align: left;\">The plugin now appears on the <a href=\"https://wordpress.org/plugins/browse/popular/page/6/\" rel=\"nofollow\">6th page</a> of the plugin repo when searching by popular plugins which puts Ultimate Member in the top 180 most popular plugins.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Extensions Released</span></p>\n<p style=\"text-align: left;\">In April we released three new premium extensions and one free extension. The paid extensions we released were: <a href=\"https://ultimatemember.com/extensions/real-time-notifications/\">Real-time Notifications</a>, <a href=\"https://ultimatemember.com/extensions/profile-completeness/\">Profile Completeness</a>, <a href=\"https://ultimatemember.com/extensions/followers/\">Followers</a> and the free extension was <a href=\"https://ultimatemember.com/extensions/online-users/\">Online Users</a>. This has brought the number of extensions we now have up to 11.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Core Extensions Bundle</span></p>\n<p style=\"text-align: left;\">The first half of April sales were mixed. We had a few good days but also a few days where revenue was around $100 which is not enough to support two people full-time even before factoring in other costs and taxes.</p>\n<p style=\"text-align: left;\">To increase revenue in the short-term we decided to introduce a <a href=\"https://ultimatemember.com/core-extensions-bundle/\">core extensions bundle</a> which would allow users to purchase all of our extensions at a significant discount rather than purchasing them individually.</p>\n<p style=\"text-align: left;\">To make the bundle attractive, it not only includes our current extensions but also includes all future extensions we make. So as long as a customer has an active bundle license they will get access to any new extensions we release.</p>\n<p style=\"text-align: left;\">The bundle was released on the 18th and from then until the end of the month the bundle brought in sales of $4,914.50. As you can see from the chart below daily revenue went up by significantly after the bundle was released</p>\n<p style=\"text-align: left;\"><img class=\" size-full wp-image-34509 aligncenter\" src=\"https://ultimatemember.com/wp-content/uploads/2015/05/monthlyrevenuechart.png\" alt=\"monthlyrevenuechart\" width=\"855\" height=\"273\" /></p>\n<p style=\"text-align: left;\">Compare this to our best-selling extension social login which has brought in sales of $3,276.80 since the 11th of March then you can see the bundle has proved to be quite popular.</p>\n<p style=\"text-align: left;\">This is most likely because the bundle is priced low at the moment. As we release more extensions in the coming weeks and months the bundle is only going to increase in price so users are taking advantage of the low price the bundle is currently selling for.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Priority Support</span></p>\n<p style=\"text-align: left;\">As well as selling extensions we also introduced a <a href=\"https://ultimatemember.com/support/\">priority support package</a> so users who want faster and more in-depth support can pay for it.</p>\n<p>We use <a href=\"http://www.helpscout.net/\" rel=\"nofollow\">HelpScout</a> to manage priority support.</p>\n<p>Working with their help desk software makes handling support a breeze and is definitely easier than managing support via our community forums.</p>\n<p>Our average response time for April was 2h 52m whilst our first response time was 3h 10m.</p>\n<p><img class=\"aligncenter size-full wp-image-34786\" src=\"https://ultimatemember.com/wp-content/uploads/2015/05/helpscout.png\" alt=\"helpscout\" width=\"1230\" height=\"638\" /></p>\n<p style=\"text-align: left;\">I never believed priority support would bring in much revenue before we released it but we’ve had 18 people purchase priority support bringing in revenue of just under $1000.</p>\n<p style=\"text-align: left;\">However, for us offering priority support is not so much about making money but rather aligning the expectations of users as to what is included with free support.</p>\n<p style=\"text-align: left;\">Because like any popular plugin that provides support to free users it has a massive drain on time and resources. So priority support was introduced as a way to ease the support burden.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Free Support</span></p>\n<p style=\"text-align: left;\">This month we’ve had 543 new topics created on our forum. That’s an average of 18.1 new topics created each day.</p>\n<p style=\"text-align: left;\">We’ve also answered 270 topics on the WP plugin forum since we first released the plugin. This brings the total number of support tickets we’ve dealt with to 1750 since the 21st of January.</p>\n<p style=\"text-align: left;\">Free support remains a challenge and we’ve had to slow down our response times for free users. However, in the vast majority of topics we are still able to respond within 24 hours.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Mailing List</span></p>\n<p style=\"text-align: left;\">When we started selling our extensions we added a notice to the plugin which asked users if they wanted us to track their site and subscribe them up to our mailing list and in return they would get a 20% discount code to use on our extensions.</p>\n<p style=\"text-align: left;\">I can tell you the vast majority of these discount codes are not used but it has allowed us to grow our mailing list quickly and we now have over 2,500 subscribers.</p>\n<p style=\"text-align: left;\">Whilst this method has allowed us to greatly increase our subscriber numbers it has also caused our open and click rates to go down. We now have an average open rate of 37% and a click rate of 9%.</p>\n<p><img class=\"aligncenter size-full wp-image-34531\" src=\"https://ultimatemember.com/wp-content/uploads/2015/05/Screen-Shot-2015-05-01-at-13.28.02.png\" alt=\"Screen Shot 2015-05-01 at 13.28.02\" width=\"396\" height=\"307\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Website traffic</span></p>\n<p style=\"text-align: left;\">As you can see from the screenshot below this month we’ve had 24,773 sessions and 9,576 users on the site which resulted in 154,663 page views.</p>\n<p style=\"text-align: left;\">Compared to March, the number of sessions has increased by 29.9%, the number of users has increased by 21% and page views has increased by 15.5%.</p>\n<p><img class=\"aligncenter size-full wp-image-34769\" src=\"https://ultimatemember.com/wp-content/uploads/2015/05/analytics.png\" alt=\"analytics\" width=\"1183\" height=\"495\" /></p>\n<p>A breakdown of our traffic sources with Google and WordPress.org bringing in the most news users.</p>\n<p><img class=\"aligncenter size-full wp-image-34778\" src=\"https://ultimatemember.com/wp-content/uploads/2015/05/analyticssource.png\" alt=\"analyticssource\" width=\"1198\" height=\"534\" /></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">Summary</span></p>\n<p>All things considered April has been a pretty good month for us and has enabled us to get a better picture of where we are at in terms of revenue and running a profitable and successful business.</p>\n<p>Hopefully we will be able to continue growing revenue over the coming month as we continue to release more extensions. Feel free to share your thoughts in the comments below.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/inside-ultimate-member-april-2015/\">Inside Ultimate Member: April 2015</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://ultimatemember.com/inside-ultimate-member-april-2015/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Creating an alternative to BuddyPress\";s: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://ultimatemember.com/creating-alternative-buddypress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://ultimatemember.com/creating-alternative-buddypress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Apr 2015 11:25:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=33089\";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:489:\"<p>If you’ve ever worked with BuddyPress and have found it to not match your needs and are looking for an alternative then Ultimate Member may just be the plugin for you. A little background I first stumbled into WordPress whilst attempting...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/creating-alternative-buddypress/\">Creating an alternative to BuddyPress</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4372:\"<p>If you’ve ever worked with BuddyPress and have found it to not match your needs and are looking for an alternative then Ultimate Member may just be the plugin for you.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">A little background</span></p>\n<p>I first stumbled into WordPress whilst attempting to create a professional jobs site for graduates.</p>\n<p>When it came to building the site the main things I was looking for was the ability for graduates to create a profile and upload a resume and for employers to be able to search for graduates and privately message graduates they were interested in talking to.</p>\n<p>So after setting up hosting and selecting a theme I then started looking for plugins that would enable me to create my site.</p>\n<p>This is when I came across BuddyPress and all of the BuddyPress related plugins which added functionality to BuddyPress.</p>\n<p>Great I thought! I would be able to use BuddyPress, a few other BuddyPress plugins and WP Job Manager and my site would have all the functionality it needed.</p>\n<p>How wrong I was!</p>\n<p>The reality quickly turned out to be quite a bit different and as a typical WordPress user I found working with BuddyPress for my site to be more than a little bit challenging.</p>\n<p>I’m not bashing BuddyPress or saying it is a bad plugin but rather it was simply not the right plugin to use in the first place.</p>\n<p>That’s because I wasn’t trying to create a social network site. I only wanted to use certain aspects of the plugin.</p>\n<p>Ultimately I felt like I was trying to fit a square peg into a round hole and gave up with BuddyPress and began looking for an alternative plugin to BuddyPress.</p>\n<p>I tried out a few other free and premium plugins but my experiences with them was not particularly great either which is part of the reason the idea for Ultimate Member was born.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">BuddyPress Alternative</span></p>\n<p>When we started out with Ultimate Member the vision was to create a plugin that would be a cross between BuddyPress and more traditional membership plugins.</p>\n<p>Or put differently a membership plugin which focuses heavily on the front-end experience for end users whilst at the same time making it extremely easy for WordPress users to use.</p>\n<p>The plugin is perfect for anyone who has tried to use BuddyPress but has found it to be more than they need.</p>\n<p>Because in all honesty how many people are really trying to create a full-blown social network?</p>\n<p>Rather I believe that people are trying their best to work with BuddyPress due to a lack of a viable alternative.</p>\n<p>Well I hope that this is no longer the case with the approach we’ve taken with Ultimate Member.</p>\n<p>We’ve created a core plugin packed full of flexibility which will enable you to create a wide variety of sites where users sign up from the front-end but kept it lean and not overloaded with features that not everyone needs.</p>\n<p>This is where our extensions come into play. With our extensions people can purchase only the features and functionality they need allowing them to create their site just the way they want.</p>\n<p>For example our latest extension: <a href=\"https://ultimatemember.com/extensions/followers/\">followers</a> allows users to follow one another. However, many people do not need this functionality on their site so by having it as an extension only the people who want this functionality on their site can have it.</p>\n<p>At the moment Ultimate Member is not a direct alternative to BuddyPress. Ultimate Member does not currently offer every feature found in BuddyPress.</p>\n<p>This is mostly to do with the fact our plugin was only launched at the end of January and we have not yet built all of our extensions.</p>\n<p>So whilst we may not be a direct alternative to BuddyPress at the moment, in the future you will see this change and you will be able do most of what you can do with BuddyPress by using Ultimate Member and our extensions.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/creating-alternative-buddypress/\">Creating an alternative to BuddyPress</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://ultimatemember.com/creating-alternative-buddypress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Introducing the core extensions bundle\";s: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://ultimatemember.com/introducing-core-extensions-bundle/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://ultimatemember.com/introducing-core-extensions-bundle/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Apr 2015 10:30: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=30660\";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:519:\"<p>Over the weekend we made a big change to our extensions and it’s something I think you’ll like. We’ve launched our core extensions bundle, and you can now get our extensions at a significant discount. Instead of buying extensions individually you can...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/introducing-core-extensions-bundle/\">Introducing the core extensions bundle</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2920:\"<p>Over the weekend we made a big change to our extensions and it’s something I think you’ll like. We’ve launched our <a href=\"https://ultimatemember.com/core-extensions-bundle/\">core extensions bundle</a>, and you can now get our extensions at a significant discount.</p>\n<p>Instead of buying extensions individually you can purchase all of our core extensions and save 70%. That’s a saving of over $400!</p>\n<p>What’s more the bundle allows you to use the extensions on as many sites as you like.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">What’s included in the bundle</span></p>\n<p>At the moment the bundle comes with eight extensions: <a href=\"https://ultimatemember.com/extensions/social-login/\">Social Login</a>, <a href=\"https://ultimatemember.com/extensions/bbpress/\">bbPress</a>, <a href=\"https://ultimatemember.com/extensions/mailchimp/\">MailChimp</a>, <a href=\"https://ultimatemember.com/extensions/user-reviews/\">User Reviews</a>, <a href=\"https://ultimatemember.com/extensions/real-time-notifications/\">Real-time Notifications</a>, <a href=\"https://ultimatemember.com/extensions/notices/\">Notices</a>, <a href=\"https://ultimatemember.com/extensions/mycred/\">myCRED</a> and <a href=\"https://ultimatemember.com/extensions/profile-completeness/\">Profile Completeness</a>.</p>\n<p>However, the best thing about the bundle is that it does not just include our current extensions. Rather, if you buy now you will also get access to all extensions we build in the future (as long as you have an active license).</p>\n<p>A lot of great extensions are getting built and are planned for the future including: private messaging, paid memberships, front-end publishing and much more.</p>\n<p>You can follow all of our developments on our <a href=\"https://trello.com/b/30quaczv/ultimate-member\">public roadmap</a>.</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 28px; font-weight: 600;\">What it costs?</span></p>\n<p>The bundle costs $149. This gives you a 1 year license for new releases, updates and support. As long as your license is active you will get access to new extensions. Once the license expires you can renew the bundle (or individual extensions if you prefer) at a 30% discount.</p>\n<p>If you want to get the bundle for the cheapest possible price then now is the time to buy it. The bundle is only going to get more expensive in the future as we release more extensions so by getting your hands on it now you will get the biggest bargain.</p>\n<p>Interested in the bundle? You can learn more about it <a href=\"https://ultimatemember.com/core-extensions-bundle/\">here</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/introducing-core-extensions-bundle/\">Introducing the core extensions bundle</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://ultimatemember.com/introducing-core-extensions-bundle/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"How to display online users on your WordPress site\";s: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:78:\"https://ultimatemember.com/how-to-display-online-users-on-your-wordpress-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://ultimatemember.com/how-to-display-online-users-on-your-wordpress-site/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Apr 2015 16:47:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ultimatemember.com/?p=26554\";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:499:\"<p>If you’re looking for a way to let users see which other users are online then you’ll be happy to know that we have created a free extension that will allow you to do just that. With our online users extension...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/how-to-display-online-users-on-your-wordpress-site/\">How to display online users on your WordPress site</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3126:\"<p>If you’re looking for a way to let users see which other users are online then you’ll be happy to know that we have created a free extension that will allow you to do just that.</p>\n<p><img class=\"aligncenter size-full wp-image-26545\" src=\"https://ultimatemember.com/wp-content/uploads/2015/04/Screen-Shot-2015-04-06-at-21.41.58-1.png\" alt=\"Profile pics are displayed on front-end of site\" width=\"425\" height=\"99\" /></p>\n<p>With our <a href=\"https://ultimatemember.com/extensions/online-users/\">online users extension</a> you can add easily display the users who are currently on your site. The extension allows you to show online users anywhere on your site via a shortcode or you can quickly display online users in your sidebar or footer using the online user widget.</p>\n<p><img class=\"aligncenter size-full wp-image-26543\" src=\"https://ultimatemember.com/wp-content/uploads/2015/04/Screen-Shot-2015-04-06-at-18.32.08.png\" alt=\"Extension creates a widget where you can display online users in your sidebar\" width=\"371\" height=\"433\" /></p>\n<p>The widget allows you to display all user roles or you can decide to only show one user role in the widget.</p>\n<p><img class=\"aligncenter size-full wp-image-26544\" src=\"https://ultimatemember.com/wp-content/uploads/2015/04/Screen-Shot-2015-04-06-at-18.32.25.png\" alt=\"You can choose to show all user roles in widget or only one specific role\" width=\"367\" height=\"431\" /></p>\n<p>Users can also see if a user is online or not by looking at their profile. If a user is online a green dot will appear next to their name. It is also possible to show a user’s online status by adding the online status field to the user meta on the profile header or on member directories.</p>\n<p><img class=\"aligncenter size-full wp-image-26549\" src=\"https://ultimatemember.com/wp-content/uploads/2015/04/Screen-Shot-2015-04-07-at-17.32.46.png\" alt=\"Green dot indicates a user is online. Also possible to display online status as user meta.\" width=\"1025\" height=\"621\" /></p>\n<p>Another important feature of the extension is the privacy controls we’ve added. When activated the extension adds an option to the privacy tab on the user account page that allows users to decide whether they want to be shown as online or not.</p>\n<p><img class=\"aligncenter size-full wp-image-26551\" src=\"https://ultimatemember.com/wp-content/uploads/2015/04/Screen-Shot-2015-04-07-at-17.36.11.png\" alt=\"Users can decide whether they want to be shown as online or not\" width=\"328\" height=\"174\" /></p>\n<p>Finally, if you’re worried about the performance of this extension then you shouldn’t be. We’ve utilised WordPress cron tasks to make this extension as performant efficient as possible, so as long as you’re not using dirt cheap shared hosting then you should have no issues with this extension.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/how-to-display-online-users-on-your-wordpress-site/\">How to display online users on your WordPress site</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://ultimatemember.com/how-to-display-online-users-on-your-wordpress-site/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:37:\"https://ultimatemember.com/blog/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"type\";i:128;s:7:\"headers\";a:21:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 12 Aug 2015 01:43:37 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:14:\"content-length\";s:5:\"16942\";s:10:\"connection\";s:5:\"close\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:10:\"set-cookie\";a:2:{i:0;s:44:\"PHPSESSID=8fcd9bb718hhc0vu1bjvo02tv3; path=/\";i:1;s:72:\"edd_items_in_cart=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/\";}s:7:\"expires\";s:29:\"Thu, 19 Nov 1981 08:52:00 GMT\";s:13:\"cache-control\";s:70:\"no-store, no-cache, must-revalidate, post-check=0, pre-check=0, public\";s:6:\"pragma\";s:8:\"no-cache\";s:10:\"x-pingback\";s:37:\"https://ultimatemember.com/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Tue, 11 Aug 2015 19:57:06 GMT\";s:4:\"etag\";s:34:\"\"c2d1792e9334342bbf5a8338fcdb8b37\"\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:16:\"content-encoding\";s:4:\"gzip\";s:13:\"accept-ranges\";s:5:\"bytes\";s:3:\"age\";s:1:\"0\";s:7:\"x-cache\";s:4:\"MISS\";}s:5:\"build\";s:14:\"20150511173052\";}','no'),(3022,'_transient_timeout_feed_mod_2b16a4f9a2b7110ce37a7c1a0e3bbb94','1439387017','no'),(3023,'_transient_feed_mod_2b16a4f9a2b7110ce37a7c1a0e3bbb94','1439343817','no'),(3071,'um_cache_userdata_42','a:49:{s:2:\"ID\";i:42;s:10:\"user_login\";s:10:\"SharynJ532\";s:9:\"user_pass\";s:34:\"$P$B5mufrIeEZDI7Vo1cPvzZdyOfDPR84/\";s:13:\"user_nicename\";s:10:\"sharynj532\";s:10:\"user_email\";s:21:\"dbricksongt@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 13:57:30\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"SharynJ532\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:10:\"SharynJ532\";s:10:\"first_name\";s:6:\"Sharyn\";s:9:\"last_name\";s:4:\"Pape\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"SH\";s:5:\"addr2\";s:20:\"Via Nazario Sauro 40\";s:4:\"city\";s:21:\"Cernusco Sul Naviglio\";s:8:\"thestate\";s:2:\"MI\";s:3:\"zip\";s:5:\"20063\";s:7:\"country\";s:5:\"Italy\";s:6:\"phone1\";s:12:\"0395 6126521\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3072,'um_cache_userdata_41','a:49:{s:2:\"ID\";i:41;s:10:\"user_login\";s:15:\"TomokoArevalo30\";s:9:\"user_pass\";s:34:\"$P$BVDhlHovJSnR3hWmqiFWftJix0Rmvu.\";s:13:\"user_nicename\";s:15:\"tomokoarevalo30\";s:10:\"user_email\";s:19:\"rbuckelnd@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 13:56:04\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"TomokoArevalo30\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"TomokoArevalo30\";s:10:\"first_name\";s:6:\"Tomoko\";s:9:\"last_name\";s:7:\"Arevalo\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"KP\";s:5:\"addr2\";s:14:\"71 Nith Street\";s:4:\"city\";s:7:\"Glasgow\";s:8:\"thestate\";s:2:\"IW\";s:3:\"zip\";s:6:\"G2 7rn\";s:7:\"country\";s:13:\"Great Britain\";s:6:\"phone1\";s:13:\"070 1793 5919\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3073,'um_cache_userdata_40','a:49:{s:2:\"ID\";i:40;s:10:\"user_login\";s:13:\"NigelWaechter\";s:9:\"user_pass\";s:34:\"$P$BMAjufNU9OahR2VAYbT3VZLrgJAeMj0\";s:13:\"user_nicename\";s:13:\"nigelwaechter\";s:10:\"user_email\";s:21:\"mseizvqwnud@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 13:55:20\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"NigelWaechter\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:13:\"NigelWaechter\";s:10:\"first_name\";s:5:\"Nigel\";s:9:\"last_name\";s:8:\"Waechter\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"PN\";s:5:\"addr2\";s:20:\"3551 Oak Ridge Drive\";s:4:\"city\";s:10:\"Perryville\";s:8:\"thestate\";s:2:\"MO\";s:3:\"zip\";s:5:\"63775\";s:7:\"country\";s:13:\"United States\";s:6:\"phone1\";s:12:\"573-517-1660\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3074,'um_cache_userdata_39','a:49:{s:2:\"ID\";i:39;s:10:\"user_login\";s:15:\"AllanFinnis0241\";s:9:\"user_pass\";s:34:\"$P$Bi5qBVu85RKIeDsuGX6m7qNUsBOpvS0\";s:13:\"user_nicename\";s:15:\"allanfinnis0241\";s:10:\"user_email\";s:29:\"harttiroundwatz1982@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 13:41:25\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"AllanFinnis0241\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"AllanFinnis0241\";s:10:\"first_name\";s:5:\"Allan\";s:9:\"last_name\";s:6:\"Finnis\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"GY\";s:5:\"addr2\";s:20:\"Luebecker Strasse 67\";s:4:\"city\";s:5:\"Ebern\";s:8:\"thestate\";s:2:\"BY\";s:3:\"zip\";s:5:\"96106\";s:7:\"country\";s:7:\"Germany\";s:6:\"phone1\";s:14:\"09533 36 84 52\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3075,'um_cache_userdata_38','a:49:{s:2:\"ID\";i:38;s:10:\"user_login\";s:14:\"DarrenDerosa25\";s:9:\"user_pass\";s:34:\"$P$BfPUpX6bTELNK2NFfzPLhNateoFkYa1\";s:13:\"user_nicename\";s:14:\"darrenderosa25\";s:10:\"user_email\";s:26:\"togetighridd1984@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 13:37:51\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"DarrenDerosa25\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:14:\"DarrenDerosa25\";s:10:\"first_name\";s:6:\"Darren\";s:9:\"last_name\";s:6:\"Derosa\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"JK\";s:5:\"addr2\";s:19:\"Bleibtreustrasse 30\";s:4:\"city\";s:20:\"Gutersloh Innenstadt\";s:8:\"thestate\";s:2:\"NW\";s:3:\"zip\";s:5:\"33335\";s:7:\"country\";s:7:\"Germany\";s:6:\"phone1\";s:14:\"05241 53 21 83\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3076,'um_cache_userdata_37','a:49:{s:2:\"ID\";i:37;s:10:\"user_login\";s:15:\"ElizabethAmar26\";s:9:\"user_pass\";s:34:\"$P$BlVCpstgCI6jsP78ZTrBIPIoa54imP.\";s:13:\"user_nicename\";s:15:\"elizabethamar26\";s:10:\"user_email\";s:33:\"elizabethamar@cavern.parlaban.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 13:22:43\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"ElizabethAmar26\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"ElizabethAmar26\";s:10:\"first_name\";s:9:\"Elizabeth\";s:9:\"last_name\";s:4:\"Amar\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"YI\";s:5:\"addr2\";s:25:\"Rua Benjamim Guimaraes 77\";s:4:\"city\";s:12:\"Juiz De Fora\";s:8:\"thestate\";s:2:\"MG\";s:3:\"zip\";s:9:\"36035-200\";s:7:\"country\";s:6:\"Brazil\";s:6:\"phone1\";s:14:\"(32) 6540-9747\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3077,'um_cache_userdata_36','a:49:{s:2:\"ID\";i:36;s:10:\"user_login\";s:16:\"GudrunI737677956\";s:9:\"user_pass\";s:34:\"$P$Bym4EJ1EiwC9pfHjx8i9Bh/GByvijE.\";s:13:\"user_nicename\";s:16:\"gudruni737677956\";s:10:\"user_email\";s:27:\"oraliaavansinogqj@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 12:35:49\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:16:\"GudrunI737677956\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:16:\"GudrunI737677956\";s:10:\"first_name\";s:6:\"Gudrun\";s:9:\"last_name\";s:6:\"Hussey\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"SV\";s:5:\"addr2\";s:14:\"Hei?Arger?I 65\";s:4:\"city\";s:7:\"Akranes\";s:8:\"thestate\";s:2:\"NA\";s:3:\"zip\";s:3:\"300\";s:7:\"country\";s:7:\"Iceland\";s:6:\"phone1\";s:8:\"448 4029\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3078,'um_cache_userdata_35','a:49:{s:2:\"ID\";i:35;s:10:\"user_login\";s:15:\"ChristopherYoon\";s:9:\"user_pass\";s:34:\"$P$BdjrVUjCjorlFpFcl6zTIzSZm44jTp1\";s:13:\"user_nicename\";s:15:\"christopheryoon\";s:10:\"user_email\";s:28:\"beideggoldsand1986@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 12:24:52\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"ChristopherYoon\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"ChristopherYoon\";s:10:\"first_name\";s:11:\"Christopher\";s:9:\"last_name\";s:4:\"Yoon\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"DO\";s:5:\"addr2\";s:16:\"1992 40th Street\";s:4:\"city\";s:7:\"Calgary\";s:8:\"thestate\";s:2:\"AB\";s:3:\"zip\";s:7:\"T2a 1c8\";s:7:\"country\";s:6:\"Canada\";s:6:\"phone1\";s:12:\"403-272-7267\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3139,'um_cache_userdata_33','a:49:{s:2:\"ID\";i:33;s:10:\"user_login\";s:15:\"MichalHavelock8\";s:9:\"user_pass\";s:34:\"$P$By5SZ2QBNEhMhR4JKyY3hJ38VNRojr1\";s:13:\"user_nicename\";s:15:\"michalhavelock8\";s:10:\"user_email\";s:28:\"lynettepeardkv5996@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 11:25:58\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"MichalHavelock8\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"MichalHavelock8\";s:10:\"first_name\";s:6:\"Michal\";s:9:\"last_name\";s:8:\"Havelock\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"DI\";s:5:\"addr2\";s:17:\"4823 Acton Avenue\";s:4:\"city\";s:7:\"Toronto\";s:8:\"thestate\";s:2:\"ON\";s:3:\"zip\";s:7:\"M3h 4j1\";s:7:\"country\";s:6:\"Canada\";s:6:\"phone1\";s:12:\"416-635-6554\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3140,'um_cache_userdata_32','a:49:{s:2:\"ID\";i:32;s:10:\"user_login\";s:16:\"BrigitteGraziani\";s:9:\"user_pass\";s:34:\"$P$BWB1WH8CitfbaNSQrP3p3IofUlffvv0\";s:13:\"user_nicename\";s:16:\"brigittegraziani\";s:10:\"user_email\";s:34:\"divinathammavongsark0294@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 11:25:01\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:16:\"BrigitteGraziani\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:16:\"BrigitteGraziani\";s:10:\"first_name\";s:8:\"Brigitte\";s:9:\"last_name\";s:8:\"Graziani\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"MG\";s:5:\"addr2\";s:15:\"Rosenstrasse 26\";s:4:\"city\";s:7:\"Munchen\";s:8:\"thestate\";s:2:\"BY\";s:3:\"zip\";s:5:\"81613\";s:7:\"country\";s:7:\"Germany\";s:6:\"phone1\";s:12:\"089 49 97 00\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3141,'um_cache_userdata_31','a:49:{s:2:\"ID\";i:31;s:10:\"user_login\";s:15:\"PatriciaDarcy84\";s:9:\"user_pass\";s:34:\"$P$BloJ40tmqsGSZ5U3FbSFs3YDwq5hdi0\";s:13:\"user_nicename\";s:15:\"patriciadarcy84\";s:10:\"user_email\";s:31:\"marlanamalboeufzf8489@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 11:24:51\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"PatriciaDarcy84\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"PatriciaDarcy84\";s:10:\"first_name\";s:8:\"Patricia\";s:9:\"last_name\";s:5:\"Darcy\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"SI\";s:5:\"addr2\";s:23:\"87 Rue Marie De Medicis\";s:4:\"city\";s:8:\"Biarritz\";s:8:\"thestate\";s:9:\"AQUITAINE\";s:3:\"zip\";s:5:\"64200\";s:7:\"country\";s:6:\"France\";s:6:\"phone1\";s:14:\"05.16.79.40.32\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3142,'um_cache_userdata_30','a:49:{s:2:\"ID\";i:30;s:10:\"user_login\";s:15:\"VirginiaSprouse\";s:9:\"user_pass\";s:34:\"$P$Btwmt7jVf4knlNaidR1hbVKKyRAvKn.\";s:13:\"user_nicename\";s:15:\"virginiasprouse\";s:10:\"user_email\";s:24:\"benitaudleyeev@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 11:22:48\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"VirginiaSprouse\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"VirginiaSprouse\";s:10:\"first_name\";s:8:\"Virginia\";s:9:\"last_name\";s:7:\"Sprouse\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"AI\";s:5:\"addr2\";s:17:\"Carillonstraat 49\";s:4:\"city\";s:9:\"Amsterdam\";s:8:\"thestate\";s:2:\"NH\";s:3:\"zip\";s:12:\"1074 Austria\";s:7:\"country\";s:11:\"Netherlands\";s:6:\"phone1\";s:11:\"06-53527242\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3143,'um_cache_userdata_29','a:49:{s:2:\"ID\";i:29;s:10:\"user_login\";s:15:\"ChristianeRoden\";s:9:\"user_pass\";s:34:\"$P$BTfxeMsk6ImHBEvP8E.caU/rwXW761.\";s:13:\"user_nicename\";s:15:\"christianeroden\";s:10:\"user_email\";s:26:\"lesliseehaferzwz@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 11:08:10\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"ChristianeRoden\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"ChristianeRoden\";s:10:\"first_name\";s:10:\"Christiane\";s:9:\"last_name\";s:5:\"Roden\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"KA\";s:5:\"addr2\";s:22:\"Feldkircher Strasse 94\";s:4:\"city\";s:7:\"Holzern\";s:8:\"thestate\";s:13:\"LOWER AUSTRIA\";s:3:\"zip\";s:4:\"3375\";s:7:\"country\";s:7:\"Austria\";s:6:\"phone1\";s:14:\"0680 312 12 04\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3144,'um_cache_userdata_28','a:49:{s:2:\"ID\";i:28;s:10:\"user_login\";s:15:\"OTCClark9505563\";s:9:\"user_pass\";s:34:\"$P$BBwoDHUKqokR6NxiLipQ5ybsFU0QQk1\";s:13:\"user_nicename\";s:15:\"otcclark9505563\";s:10:\"user_email\";s:24:\"kasirevellojrp@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 11:08:06\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"OTCClark9505563\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"OTCClark9505563\";s:10:\"first_name\";s:5:\"Clark\";s:9:\"last_name\";s:5:\"Eales\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"TI\";s:5:\"addr2\";s:24:\"4264 Black Stallion Road\";s:4:\"city\";s:9:\"Lexington\";s:8:\"thestate\";s:2:\"KY\";s:3:\"zip\";s:5:\"40511\";s:7:\"country\";s:13:\"United States\";s:6:\"phone1\";s:12:\"859-537-5283\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3145,'um_cache_userdata_27','a:49:{s:2:\"ID\";i:27;s:10:\"user_login\";s:14:\"LettieDonnelly\";s:9:\"user_pass\";s:34:\"$P$Bl6eUqEVgmeIWCyhi91xdqw/aVuypG1\";s:13:\"user_nicename\";s:14:\"lettiedonnelly\";s:10:\"user_email\";s:26:\"exfreesovgar1984@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 10:49:38\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"LettieDonnelly\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:14:\"LettieDonnelly\";s:10:\"first_name\";s:6:\"Lettie\";s:9:\"last_name\";s:8:\"Donnelly\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"HE\";s:5:\"addr2\";s:25:\"Rua Clovis Bevilaqua 1322\";s:4:\"city\";s:7:\"Pelotas\";s:8:\"thestate\";s:2:\"RS\";s:3:\"zip\";s:9:\"96025-060\";s:7:\"country\";s:6:\"Brazil\";s:6:\"phone1\";s:14:\"(53) 9676-6859\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3146,'um_cache_userdata_26','a:49:{s:2:\"ID\";i:26;s:10:\"user_login\";s:15:\"ElizabethDale24\";s:9:\"user_pass\";s:34:\"$P$BE/99A.bwmB2mju0bvirGhU0ECmjCj/\";s:13:\"user_nicename\";s:15:\"elizabethdale24\";s:10:\"user_email\";s:31:\"mammiemcchesneyfw2382@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 10:44:50\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"ElizabethDale24\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"ElizabethDale24\";s:10:\"first_name\";s:9:\"Elizabeth\";s:9:\"last_name\";s:4:\"Dale\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"UU\";s:5:\"addr2\";s:15:\"Kirchenallee 83\";s:4:\"city\";s:8:\"Kotzting\";s:8:\"thestate\";s:2:\"BY\";s:3:\"zip\";s:5:\"93444\";s:7:\"country\";s:7:\"Germany\";s:6:\"phone1\";s:14:\"09941 42 94 03\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3147,'um_cache_userdata_25','a:49:{s:2:\"ID\";i:25;s:10:\"user_login\";s:15:\"WilfordHathaway\";s:9:\"user_pass\";s:34:\"$P$BoaMHoHZhFx0b4W72sur4aWG3yxVPS1\";s:13:\"user_nicename\";s:15:\"wilfordhathaway\";s:10:\"user_email\";s:25:\"dowslebmydy1983@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 10:14:39\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"WilfordHathaway\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"WilfordHathaway\";s:10:\"first_name\";s:7:\"Wilford\";s:9:\"last_name\";s:8:\"Hathaway\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"DE\";s:5:\"addr2\";s:15:\"Kirchenplatz 39\";s:4:\"city\";s:4:\"Auen\";s:8:\"thestate\";s:9:\"CARINTHIA\";s:3:\"zip\";s:4:\"9461\";s:7:\"country\";s:7:\"Austria\";s:6:\"phone1\";s:14:\"0681 419 09 95\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3148,'um_cache_userdata_24','a:49:{s:2:\"ID\";i:24;s:10:\"user_login\";s:14:\"JeannieTellez7\";s:9:\"user_pass\";s:34:\"$P$Bo.TrZlsEGTNcc0cxdBlJsk4BjSgwp/\";s:13:\"user_nicename\";s:14:\"jeannietellez7\";s:10:\"user_email\";s:33:\"jeannietellez59@pack.harboxed.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 05:16:09\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"JeannieTellez7\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:14:\"JeannieTellez7\";s:10:\"first_name\";s:7:\"Jeannie\";s:9:\"last_name\";s:6:\"Tellez\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"OJ\";s:5:\"addr2\";s:20:\"Salzburgerstrasse 29\";s:4:\"city\";s:11:\"Grilzgraben\";s:8:\"thestate\";s:10:\"BURGENLAND\";s:3:\"zip\";s:4:\"9562\";s:7:\"country\";s:7:\"Austria\";s:6:\"phone1\";s:2:\"ON\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3149,'um_cache_userdata_23','a:49:{s:2:\"ID\";i:23;s:10:\"user_login\";s:15:\"TSNCallum321204\";s:9:\"user_pass\";s:34:\"$P$BFgjAj7Wc72oxoSctyUDcFaRb1SkOK0\";s:13:\"user_nicename\";s:15:\"tsncallum321204\";s:10:\"user_email\";s:27:\"auriliazingonehtk@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 04:10:36\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"TSNCallum321204\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"TSNCallum321204\";s:10:\"first_name\";s:6:\"Callum\";s:9:\"last_name\";s:4:\"Hunt\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"GO\";s:5:\"addr2\";s:13:\"Stadtplatz 67\";s:4:\"city\";s:11:\"Rannersdorf\";s:8:\"thestate\";s:13:\"LOWER AUSTRIA\";s:3:\"zip\";s:4:\"3386\";s:7:\"country\";s:7:\"Austria\";s:6:\"phone1\";s:14:\"0680 192 96 52\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3150,'um_cache_userdata_22','a:49:{s:2:\"ID\";i:22;s:10:\"user_login\";s:11:\"StaciPolley\";s:9:\"user_pass\";s:34:\"$P$BiVqrargAFYStVKvErx8mrHIMuHXVx/\";s:13:\"user_nicename\";s:11:\"stacipolley\";s:10:\"user_email\";s:26:\"collinebaronejzj@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 04:10:02\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:11:\"StaciPolley\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:11:\"StaciPolley\";s:10:\"first_name\";s:5:\"Staci\";s:9:\"last_name\";s:6:\"Polley\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"DJ\";s:5:\"addr2\";s:16:\"749 Foley Street\";s:4:\"city\";s:15:\"Fort Lauderdale\";s:8:\"thestate\";s:2:\"FL\";s:3:\"zip\";s:5:\"33383\";s:7:\"country\";s:13:\"United States\";s:6:\"phone1\";s:12:\"954-626-6603\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3151,'um_cache_userdata_21','a:49:{s:2:\"ID\";i:21;s:10:\"user_login\";s:15:\"Agueda48U720575\";s:9:\"user_pass\";s:34:\"$P$B5864YCYDzVu/LAkiF/JfXIs/ck3tY0\";s:13:\"user_nicename\";s:15:\"agueda48u720575\";s:10:\"user_email\";s:33:\"aguedarowland58@pack.harboxed.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 03:43:31\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"Agueda48U720575\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"Agueda48U720575\";s:10:\"first_name\";s:6:\"Agueda\";s:9:\"last_name\";s:7:\"Rowland\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"NH\";s:5:\"addr2\";s:17:\"23 Helland Bridge\";s:4:\"city\";s:6:\"Upavon\";s:8:\"thestate\";s:2:\"NA\";s:3:\"zip\";s:7:\"Sn9 4rw\";s:7:\"country\";s:13:\"Great Britain\";s:6:\"phone1\";s:13:\"077 5019 0355\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3152,'um_cache_userdata_20','a:49:{s:2:\"ID\";i:20;s:10:\"user_login\";s:14:\"CorinaWant4248\";s:9:\"user_pass\";s:34:\"$P$BzJHjEmT7VR13iTtnito05ORy.1qck1\";s:13:\"user_nicename\";s:14:\"corinawant4248\";s:10:\"user_email\";s:29:\"raphaelaflandersbsf@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 03:27:53\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"CorinaWant4248\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:14:\"CorinaWant4248\";s:10:\"first_name\";s:6:\"Corina\";s:9:\"last_name\";s:4:\"Want\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"RX\";s:5:\"addr2\";s:14:\"Kornstrasse 89\";s:4:\"city\";s:23:\"Neustift Bei Schlaining\";s:8:\"thestate\";s:10:\"BURGENLAND\";s:3:\"zip\";s:4:\"7433\";s:7:\"country\";s:7:\"Austria\";s:6:\"phone1\";s:14:\"0688 167 49 12\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3153,'um_cache_userdata_19','a:49:{s:2:\"ID\";i:19;s:10:\"user_login\";s:12:\"EloyMcMaster\";s:9:\"user_pass\";s:34:\"$P$Bk7lATGDfJVIoq3qq/a/tDqxLOD/sy1\";s:13:\"user_nicename\";s:12:\"eloymcmaster\";s:10:\"user_email\";s:31:\"eloymcmaster2@pack.harboxed.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 03:13:52\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"EloyMcMaster\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:12:\"EloyMcMaster\";s:10:\"first_name\";s:4:\"Eloy\";s:9:\"last_name\";s:8:\"McMaster\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"FZ\";s:5:\"addr2\";s:16:\"Viale Augusto 21\";s:4:\"city\";s:36:\"San Lorenzo Di Santi Cosma E Damiano\";s:8:\"thestate\";s:2:\"LT\";s:3:\"zip\";s:4:\"4020\";s:7:\"country\";s:5:\"Italy\";s:6:\"phone1\";s:12:\"0320 5065321\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3154,'um_cache_userdata_18','a:49:{s:2:\"ID\";i:18;s:10:\"user_login\";s:16:\"Luis51X399904506\";s:9:\"user_pass\";s:34:\"$P$B0AfEw3TOZSW843Gs1Z2nSyUIcmx2i.\";s:13:\"user_nicename\";s:16:\"luis51x399904506\";s:10:\"user_email\";s:31:\"luismckenzie4@pack.harboxed.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 02:45:35\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:16:\"Luis51X399904506\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:16:\"Luis51X399904506\";s:10:\"first_name\";s:4:\"Luis\";s:9:\"last_name\";s:8:\"McKenzie\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"YY\";s:5:\"addr2\";s:16:\"Via Pestariso 30\";s:4:\"city\";s:10:\"St. Gallen\";s:8:\"thestate\";s:2:\"NA\";s:3:\"zip\";s:4:\"9010\";s:7:\"country\";s:11:\"Switzerland\";s:6:\"phone1\";s:13:\"071 917 37 50\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3155,'um_cache_userdata_17','a:49:{s:2:\"ID\";i:17;s:10:\"user_login\";s:10:\"XMYKarma67\";s:9:\"user_pass\";s:34:\"$P$B8VvmSVcJ3jnAJUE/nWxbhP55.DwRf/\";s:13:\"user_nicename\";s:10:\"xmykarma67\";s:10:\"user_email\";s:27:\"karmahurt@pack.harboxed.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 02:29:30\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"XMYKarma67\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:10:\"XMYKarma67\";s:10:\"first_name\";s:5:\"Karma\";s:9:\"last_name\";s:4:\"Hurt\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"RD\";s:5:\"addr2\";s:20:\"78 Gloucester Avenue\";s:4:\"city\";s:6:\"Hendon\";s:8:\"thestate\";s:2:\"SA\";s:3:\"zip\";s:4:\"5014\";s:7:\"country\";s:9:\"Australia\";s:6:\"phone1\";s:14:\"(08) 8247 3254\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3156,'um_cache_userdata_16','a:49:{s:2:\"ID\";i:16;s:10:\"user_login\";s:13:\"Marty85223058\";s:9:\"user_pass\";s:34:\"$P$Bd/Cis7bL.QzPxu/fZdTgIbRy5gFCx0\";s:13:\"user_nicename\";s:13:\"marty85223058\";s:10:\"user_email\";s:30:\"wallyomalley4111@mailcatch.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 00:51:30\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"Marty85223058\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:13:\"Marty85223058\";s:10:\"first_name\";s:5:\"Marty\";s:9:\"last_name\";s:6:\"Stokes\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"KW\";s:5:\"addr2\";s:16:\"3826 Maud Street\";s:4:\"city\";s:5:\"Dover\";s:8:\"thestate\";s:7:\"GERMANY\";s:3:\"zip\";s:5:\"19901\";s:7:\"country\";s:13:\"United States\";s:6:\"phone1\";s:12:\"302-672-1312\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3157,'um_cache_userdata_15','a:49:{s:2:\"ID\";i:15;s:10:\"user_login\";s:15:\"MiriamBarringer\";s:9:\"user_pass\";s:34:\"$P$BMdGija3tBSDQ.dCiOcRtWlcEBVmPL1\";s:13:\"user_nicename\";s:15:\"miriambarringer\";s:10:\"user_email\";s:26:\"killieharvilllla@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 00:39:04\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"MiriamBarringer\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"MiriamBarringer\";s:10:\"first_name\";s:6:\"Miriam\";s:9:\"last_name\";s:9:\"Barringer\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:18:\"Zomervlinderberm 5\";s:5:\"addr2\";s:18:\"Zomervlinderberm 5\";s:4:\"city\";s:6:\"Houten\";s:8:\"thestate\";s:2:\"UT\";s:3:\"zip\";s:7:\"3994 Wn\";s:7:\"country\";s:11:\"Netherlands\";s:6:\"phone1\";s:11:\"06-54903783\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3198,'um_cache_userdata_14','a:49:{s:2:\"ID\";i:14;s:10:\"user_login\";s:12:\"DoyleKiley41\";s:9:\"user_pass\";s:34:\"$P$BJXrINlZ6yU200zGgCid2eZZUF32P61\";s:13:\"user_nicename\";s:12:\"doylekiley41\";s:10:\"user_email\";s:28:\"christyelehmingkby@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 00:29:22\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"DoyleKiley41\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:12:\"DoyleKiley41\";s:10:\"first_name\";s:5:\"Doyle\";s:9:\"last_name\";s:5:\"Kiley\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"HS\";s:5:\"addr2\";s:9:\"Lodorp 93\";s:4:\"city\";s:7:\"Maissin\";s:8:\"thestate\";s:3:\"WHT\";s:3:\"zip\";s:4:\"6852\";s:7:\"country\";s:7:\"Belgium\";s:6:\"phone1\";s:13:\"0476 36 44 89\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3199,'um_cache_userdata_13','a:49:{s:2:\"ID\";i:13;s:10:\"user_login\";s:12:\"Iola44R04585\";s:9:\"user_pass\";s:34:\"$P$ByuE4zgqrPcxB4fvuuCiq0M0obp0vC.\";s:13:\"user_nicename\";s:12:\"iola44r04585\";s:10:\"user_email\";s:26:\"shondabartlowqdj@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-30 00:04:49\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"Iola44R04585\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:12:\"Iola44R04585\";s:10:\"first_name\";s:4:\"Iola\";s:9:\"last_name\";s:7:\"St Leon\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:15:\"88 Rue Du Limas\";s:5:\"addr2\";s:15:\"88 Rue Du Limas\";s:4:\"city\";s:7:\"Bayonne\";s:8:\"thestate\";s:2:\"ZS\";s:3:\"zip\";s:5:\"64100\";s:7:\"country\";s:6:\"France\";s:6:\"phone1\";s:14:\"05.13.72.33.72\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3200,'um_cache_userdata_12','a:49:{s:2:\"ID\";i:12;s:10:\"user_login\";s:12:\"Sang91445087\";s:9:\"user_pass\";s:34:\"$P$BrOBgC3nxRemu4bMuGOIL0TQJoKazw0\";s:13:\"user_nicename\";s:12:\"sang91445087\";s:10:\"user_email\";s:24:\"sangfennell@almajedy.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 20:21:39\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"Sang91445087\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:12:\"Sang91445087\";s:10:\"first_name\";s:4:\"Sang\";s:9:\"last_name\";s:7:\"Fennell\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"FU\";s:5:\"addr2\";s:24:\"16 Square De La Couronne\";s:4:\"city\";s:17:\"Ozoir-La-Ferriere\";s:8:\"thestate\";s:6:\"CENTRE\";s:3:\"zip\";s:5:\"77330\";s:7:\"country\";s:6:\"France\";s:6:\"phone1\";s:14:\"01.08.93.44.86\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3201,'um_cache_userdata_11','a:49:{s:2:\"ID\";i:11;s:10:\"user_login\";s:16:\"StepanieChristop\";s:9:\"user_pass\";s:34:\"$P$BwRG2Lgp./5yisfbTm/4qjLjx.q.yr1\";s:13:\"user_nicename\";s:16:\"stepaniechristop\";s:10:\"user_email\";s:24:\"cortesetaftdpj@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 18:47:18\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:16:\"StepanieChristop\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:16:\"StepanieChristop\";s:10:\"first_name\";s:8:\"Stepanie\";s:9:\"last_name\";s:11:\"Christopher\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"EI\";s:5:\"addr2\";s:16:\"51 Hindhead Road\";s:4:\"city\";s:16:\"Eassie And Nevay\";s:8:\"thestate\";s:2:\"NA\";s:3:\"zip\";s:7:\"Dd8 5xg\";s:7:\"country\";s:13:\"Great Britain\";s:6:\"phone1\";s:13:\"079 7184 7574\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3202,'um_cache_userdata_10','a:49:{s:2:\"ID\";i:10;s:10:\"user_login\";s:15:\"WilsonCastillo8\";s:9:\"user_pass\";s:34:\"$P$BSEDMZdQMBE08jW99AM.tSsktb73Bu/\";s:13:\"user_nicename\";s:15:\"wilsoncastillo8\";s:10:\"user_email\";s:34:\"wilsoncastillo54@pack.harboxed.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 18:34:08\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"WilsonCastillo8\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"WilsonCastillo8\";s:10:\"first_name\";s:6:\"Wilson\";s:9:\"last_name\";s:8:\"Castillo\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"AI\";s:5:\"addr2\";s:13:\"Via Acrone 96\";s:4:\"city\";s:15:\"Vignole Borbera\";s:8:\"thestate\";s:2:\"AL\";s:3:\"zip\";s:5:\"15060\";s:7:\"country\";s:5:\"Italy\";s:6:\"phone1\";s:12:\"0348 5190199\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3203,'um_cache_userdata_9','a:49:{s:2:\"ID\";i:9;s:10:\"user_login\";s:10:\"Joellen44D\";s:9:\"user_pass\";s:34:\"$P$BV9j52Yx0KT7GJgJcyrj4xU9FrRXjT.\";s:13:\"user_nicename\";s:10:\"joellen44d\";s:10:\"user_email\";s:20:\"lhrercyvuk@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 18:26:37\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"Joellen44D\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:10:\"Joellen44D\";s:10:\"first_name\";s:7:\"Joellen\";s:9:\"last_name\";s:7:\"Dutcher\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"VP\";s:5:\"addr2\";s:14:\"71 High Street\";s:4:\"city\";s:9:\"Stansbury\";s:8:\"thestate\";s:2:\"SA\";s:3:\"zip\";s:4:\"5582\";s:7:\"country\";s:9:\"Australia\";s:6:\"phone1\";s:14:\"(08) 8304 1298\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3204,'um_cache_userdata_8','a:49:{s:2:\"ID\";i:8;s:10:\"user_login\";s:14:\"RomanMatthes01\";s:9:\"user_pass\";s:34:\"$P$Bj2FEZT7oomszakwXo60vzqJ3eIYhA0\";s:13:\"user_nicename\";s:14:\"romanmatthes01\";s:10:\"user_email\";s:20:\"admin@singonline.net\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 18:17:07\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"RomanMatthes01\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:14:\"RomanMatthes01\";s:10:\"first_name\";s:5:\"Roman\";s:9:\"last_name\";s:7:\"Matthes\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"PB\";s:5:\"addr2\";s:12:\"63 Hart Road\";s:4:\"city\";s:9:\"Northwick\";s:8:\"thestate\";s:2:\"NA\";s:3:\"zip\";s:8:\"Bs12 5ue\";s:7:\"country\";s:13:\"Great Britain\";s:6:\"phone1\";s:13:\"070 7815 4822\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3205,'um_cache_userdata_7','a:49:{s:2:\"ID\";i:7;s:10:\"user_login\";s:14:\"UlrichBible256\";s:9:\"user_pass\";s:34:\"$P$B02HSKSffAooWUQATUgSbCvzH/6EvY0\";s:13:\"user_nicename\";s:14:\"ulrichbible256\";s:10:\"user_email\";s:30:\"ulrichbible@monkey.zonerig.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 07:53:43\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"UlrichBible256\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:14:\"UlrichBible256\";s:10:\"first_name\";s:6:\"Ulrich\";s:9:\"last_name\";s:5:\"Bible\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"BM\";s:5:\"addr2\";s:17:\"Minervaplaats 192\";s:4:\"city\";s:8:\"Nijmegen\";s:8:\"thestate\";s:2:\"GE\";s:3:\"zip\";s:7:\"6525 Jd\";s:7:\"country\";s:11:\"Netherlands\";s:6:\"phone1\";s:11:\"06-43576560\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3206,'um_cache_userdata_6','a:49:{s:2:\"ID\";i:6;s:10:\"user_login\";s:14:\"ElkeVln9893241\";s:9:\"user_pass\";s:34:\"$P$BRlG/Eqr8hMkqPB1r6bu9fEl5OZuIz0\";s:13:\"user_nicename\";s:14:\"elkevln9893241\";s:10:\"user_email\";s:27:\"elkegaston@long.zonerig.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 05:09:11\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"ElkeVln9893241\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:14:\"ElkeVln9893241\";s:10:\"first_name\";s:4:\"Elke\";s:9:\"last_name\";s:6:\"Gaston\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"CV\";s:5:\"addr2\";s:22:\"Rua Da Emancipacao 576\";s:4:\"city\";s:15:\"Varzea Paulista\";s:8:\"thestate\";s:2:\"SP\";s:3:\"zip\";s:9:\"13220-022\";s:7:\"country\";s:6:\"Brazil\";s:6:\"phone1\";s:14:\"(11) 2766-6546\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3207,'um_cache_userdata_5','a:49:{s:2:\"ID\";i:5;s:10:\"user_login\";s:15:\"LettiePalafox46\";s:9:\"user_pass\";s:34:\"$P$BL6bQAqPvwzdbChiSwq7d3bRrFgNmY.\";s:13:\"user_nicename\";s:15:\"lettiepalafox46\";s:10:\"user_email\";s:26:\"devonneterresytb@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 03:34:17\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"LettiePalafox46\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:15:\"LettiePalafox46\";s:10:\"first_name\";s:6:\"Lettie\";s:9:\"last_name\";s:7:\"Palafox\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"FA\";s:5:\"addr2\";s:20:\"Gruenauer Strasse 73\";s:4:\"city\";s:9:\"Hohenhorn\";s:8:\"thestate\";s:2:\"SH\";s:3:\"zip\";s:5:\"21526\";s:7:\"country\";s:7:\"Germany\";s:6:\"phone1\";s:14:\"04152 23 26 46\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3208,'um_cache_userdata_4','a:49:{s:2:\"ID\";i:4;s:10:\"user_login\";s:10:\"TFPMadonna\";s:9:\"user_pass\";s:34:\"$P$BZpEIRpm.2qUqrBMPKd92vkkRNvaby1\";s:13:\"user_nicename\";s:10:\"tfpmadonna\";s:10:\"user_email\";s:28:\"meridelkokkotounbf@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 03:31:20\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"TFPMadonna\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:10:\"TFPMadonna\";s:10:\"first_name\";s:7:\"Madonna\";s:9:\"last_name\";s:5:\"Heyer\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"MR\";s:5:\"addr2\";s:28:\"80 Boulevard Aristide Briand\";s:4:\"city\";s:9:\"Le Cannet\";s:8:\"thestate\";s:26:\"PROVENCE-ALPES-COTE D\'AZUR\";s:3:\"zip\";s:4:\"6110\";s:7:\"country\";s:6:\"France\";s:6:\"phone1\";s:14:\"04.73.20.07.53\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3209,'um_cache_userdata_3','a:49:{s:2:\"ID\";i:3;s:10:\"user_login\";s:11:\"DwainHatton\";s:9:\"user_pass\";s:34:\"$P$B5RHxa2BN/thlFYW.6bcPQPJxVE/Uz/\";s:13:\"user_nicename\";s:11:\"dwainhatton\";s:10:\"user_email\";s:27:\"douglasramellawop@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 03:28:13\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:11:\"DwainHatton\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:11:\"DwainHatton\";s:10:\"first_name\";s:5:\"Dwain\";s:9:\"last_name\";s:6:\"Hatton\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"UE\";s:5:\"addr2\";s:18:\"4573 Oliver Street\";s:4:\"city\";s:10:\"Fort Worth\";s:8:\"thestate\";s:2:\"TX\";s:3:\"zip\";s:5:\"76102\";s:7:\"country\";s:13:\"United States\";s:6:\"phone1\";s:12:\"817-349-9466\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(3210,'um_cache_userdata_2','a:49:{s:2:\"ID\";i:2;s:10:\"user_login\";s:11:\"IHLPrecious\";s:9:\"user_pass\";s:34:\"$P$BFrmcG4k3JKOm8C/1Cidkw5W9ZlL7/1\";s:13:\"user_nicename\";s:11:\"ihlprecious\";s:10:\"user_email\";s:26:\"jasunespositosor@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 03:13:28\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:11:\"IHLPrecious\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:8:\"nickname\";s:11:\"IHLPrecious\";s:10:\"first_name\";s:8:\"Precious\";s:9:\"last_name\";s:9:\"Sanderson\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:5:\"addr1\";s:2:\"BX\";s:5:\"addr2\";s:17:\"Stollenstrasse 70\";s:4:\"city\";s:18:\"Ober-Zwischenbrunn\";s:8:\"thestate\";s:10:\"BURGENLAND\";s:3:\"zip\";s:4:\"3100\";s:7:\"country\";s:7:\"Austria\";s:6:\"phone1\";s:2:\"WL\";s:20:\"default_password_nag\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:4:\"role\";s:6:\"member\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"core\";s:6:\"member\";s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:16:\"default_homepage\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:11:\"super_admin\";i:0;}','yes'),(28851,'_transient_timeout_gce_feed_ids','1444757673','no'),(29552,'_transient_timeout_feed_mod_4d9a07aa61eb536bf8fe69cbf87489c7','1444284465','no'),(29553,'_transient_feed_mod_4d9a07aa61eb536bf8fe69cbf87489c7','1444241265','no'),(29079,'_transient_jpp_li_ae1da14dbac0abde88cf6b0a0461deea','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (94.242.228.187)\";s:17:\"seconds_remaining\";i:3469;s:16:\"blocked_attempts\";s:3:\"285\";s:6:\"expire\";i:1444185070;}','no'),(27777,'_transient_timeout_jpp_li_54a1c24b96cbe5e1ad669d8d1b180017','1443966417','no'),(27778,'_transient_jpp_li_54a1c24b96cbe5e1ad669d8d1b180017','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:49:\"No current blocks on this IP address (5.9.98.130)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:3:\"254\";s:6:\"expire\";i:1443966417;}','no'),(29567,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1444284519','no'); INSERT INTO `wp_options` VALUES (29568,'_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:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Oct 2015 18:00:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:9:\"Yoast SEO\";s: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:34:\"8321@http://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:114:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using 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: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:14:\"W3 Total Cache\";s: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:35:\"12073@http://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:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network 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: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:18:\"Wordfence Security\";s: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:35:\"29832@http://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:\"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.\";s: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: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:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"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:32:\"15@http://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:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s: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: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:21:\"Regenerate Thumbnails\";s: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:34:\"6743@http://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: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:33:\"WooCommerce - excelling eCommerce\";s: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:35:\"29860@http://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:15:\"NextGEN Gallery\";s: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:34:\"1169@http://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:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 13 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:18:\"WordPress Importer\";s: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:35:\"18101@http://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: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:14:\"WP Super Cache\";s: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:34:\"2572@http://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: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:25:\"Google Analytics by Yoast\";s: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:34:\"2316@http://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:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error 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: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: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:21:\"Really Simple CAPTCHA\";s: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:34:\"9542@http://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: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:22:\"Advanced Custom 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: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:35:\"25254@http://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: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:\"WP-PageNavi\";s: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:33:\"363@http://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:24:\"Jetpack by WordPress.com\";s: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:35:\"23862@http://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:28:\"Your WordPress, Streamlined.\";s: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:\"Tim Moore\";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:14:\"Contact Form 7\";s: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:34:\"2141@http://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: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:19:\"Google XML Sitemaps\";s: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:33:\"132@http://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: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: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:34:\"5790@http://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: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:19:\"All in One SEO Pack\";s: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:33:\"753@http://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:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s: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: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:16:\"TinyMCE Advanced\";s: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:34:\"2082@http://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:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG 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: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:14:\"Duplicate Post\";s: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:34:\"2646@http://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: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:16:\"Disable Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:35:\"26907@http://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:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s: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: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:18:\"WP Multibyte Patch\";s: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:35:\"28395@http://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: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:27:\"Black Studio TinyMCE Widget\";s: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:35:\"31973@http://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: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:46:\"iThemes Security (formerly Better WP Security)\";s: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:35:\"21738@http://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:\"Protect your WordPress site by hiding vital areas of your site, protecting access to important files, preventing brute-force login attempts, detecting\";s: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:\"Chris Wiegman\";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:26:\"Page Builder by SiteOrigin\";s: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:35:\"51888@http://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: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:\"Meta Slider\";s: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/ml-slider/#post-49521\";s: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 Feb 2013 16:56: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:35:\"49521@http://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:145:\"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s: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:\"Matcha Labs\";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:33:\"Google Analytics Dashboard for WP\";s: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:35:\"50539@http://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:127:\"Displays Google Analytics reports 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: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:10:\"Duplicator\";s: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:35:\"26607@http://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: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:34:\"UpdraftPlus Backup and Restoration\";s: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:35:\"38058@http://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: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:30:\"Clef Two-Factor Authentication\";s: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:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s: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, 27 Dec 2012 01:25: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:35:\"47509@http://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:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical user experience.\";s: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:\"Dave Ross\";s: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:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 07 Oct 2015 18:08:39 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:13:\"last-modified\";s:29:\"Thu, 01 Jan 2009 20:34:44 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20150511173052\";}','no'),(27206,'_transient_jpp_li_7e885bc6fe8d9969a08a48e1f3eba545','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (204.16.245.51)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:3:\"250\";s:6:\"expire\";i:1443887343;}','no'),(28852,'_transient_gce_feed_ids','a:1:{i:474;s:5:\"Stats\";}','no'),(29569,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1444284522','no'),(29570,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1444241321','no'),(28977,'_transient_timeout_jpp_li_bf0f0dbc7c01f0b83c51af2b1139aea8','1444164468','no'),(29070,'_transient_jpp_li_95961a7b44d3f0bb0f4f7acdd69f5cda','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.11.146.126)\";s:17:\"seconds_remaining\";i:3009;s:16:\"blocked_attempts\";s:3:\"284\";s:6:\"expire\";i:1444183298;}','no'),(29071,'_transient_jpp_li_17a38ceb38e1008f2d9fc78f8255b6b5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (46.165.230.5)\";s:17:\"seconds_remaining\";i:3558;s:16:\"blocked_attempts\";s:3:\"284\";s:6:\"expire\";i:1444183847;}','no'),(30157,'_transient_timeout_jpp_li_3fd8d40ff03d01d7784b37e50dc34631','1444315147','no'),(30158,'_transient_jpp_li_3fd8d40ff03d01d7784b37e50dc34631','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (162.247.72.202)\";s:17:\"seconds_remaining\";i:1889;s:16:\"blocked_attempts\";s:3:\"303\";s:6:\"expire\";i:1444315147;}','no'),(30213,'_transient_timeout_jpp_li_c3d68204cc63eda413bfc6dd57f2b558','1444332017','no'),(30214,'_transient_jpp_li_c3d68204cc63eda413bfc6dd57f2b558','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (157.55.39.119)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:3:\"306\";s:6:\"expire\";i:1444332016;}','no'),(13780,'_transient_timeout_cff_timeline_event_json_747319162057214','1440822525','no'),(12224,'_transient_timeout_cff_timeline_event_json_961684870536849','1440592447','no'),(12225,'_transient_cff_timeline_event_json_961684870536849','{\"description\":\"The Beloit Podcast- call in and share your thoughts on our areas most relevant topics and issues.\",\"end_time\":\"2015-08-21T14:00:00-0500\",\"is_date_only\":false,\"location\":\"Beloit, WI\",\"name\":\"Forum Friday!\",\"owner\":{\"name\":\"The Beloit Podcast\",\"category\":\"Education Website\",\"id\":\"876720959038087\"},\"privacy\":\"OPEN\",\"start_time\":\"2015-08-21T12:00:00-0500\",\"timezone\":\"America\\/Chicago\",\"updated_time\":\"2015-08-21T05:36:13+0000\",\"venue\":{\"city\":\"Beloit\",\"country\":\"United States\",\"latitude\":42.508333333333,\"longitude\":-89.031666666667,\"state\":\"WI\",\"zip\":\"\\u003C\\u003Cnot-applicable>>\",\"id\":\"108219359198262\"},\"id\":\"961684870536849\"}','no'),(26568,'_transient_timeout_jpp_li_10d994277cd62fc2da05622a57d711b1','1443701532','no'),(7658,'_transient_timeout_cff_timeline_event_json_1627888850811444','1440154390','no'),(7659,'_transient_cff_timeline_event_json_1627888850811444','{\"description\":\"Come and be part of this gallery of spirits as they come through to give messages to select audience members through Medium Jonna Kay! \\nThis is a one of a kind event!\\nYou may be selected to come up and get a message from your dearly departed!\\nBring an item, or photo from the person you want to hear from, so Jonna Kay can hold it and get vibrations from that object! \\nOne \\\"Specialty Drink\\\" will be provided free of charge.\\nPrizes, hashtag contests with the possibility to get a personal FULL private reading! \\n\\nIf you have ever watched the Long Island Medium and thought, \\\"I should do this\\\", then this is YOUR sign to do this! \\n\\nThis event is in the Banquet Room Glitz & Go, Beloit\'s finest and newest Banquet Room! \\n\\nBy paying the reservation fee, you are giving your permission to be filmed live on You Tube or Periscope to save your reading! \\nReservation Instructions: Stop in and pre pay at Glitz & Go LLC $ 25.00 per person, in advance. You are encouraged to reserve early, if you choose to wait until the last minute, the price at the door is $30.00 per person. \\n6:30 Registration\\n7:00 Show Time\",\"is_date_only\":false,\"location\":\"Glitz & Go LLC\",\"name\":\"The Key To The Other Side With Jonna The Happy Medium\",\"owner\":{\"name\":\"Psychic Reading By Jonna The Happy Medium\",\"category\":\"Public Figure\",\"id\":\"120646519589\"},\"privacy\":\"OPEN\",\"start_time\":\"2015-08-20T18:30:00-0500\",\"timezone\":\"America\\/Chicago\",\"updated_time\":\"2015-07-23T17:27:04+0000\",\"venue\":{\"city\":\"Beloit\",\"country\":\"United States\",\"latitude\":42.5601311,\"longitude\":-89.0111694,\"state\":\"WI\",\"street\":\"3311 Prairie Ave\",\"zip\":\"53511\",\"id\":\"1548969325377984\"},\"id\":\"1627888850811444\"}','no'),(7656,'_transient_timeout_cff_timeline_event_json_910468652332165','1440154390','no'),(7657,'_transient_cff_timeline_event_json_910468652332165','{\"description\":\"Come and be part of this gallery of spirits as they come through to give messages to select audience members through Medium Jonna Kay! \\nThis is a one of a kind event!\\nYou may be selected to come up and get a message from your dearly departed!\\nBring an item, or photo from the person you want to hear from, so Jonna Kay can hold it and get vibrations from that object! \\nOne \\\"Specialty Drink\\\" will be provided free of charge.\\nPrizes, hashtag contests with the possibility to get a personal FULL private reading! \\n\\nIf you have ever watched the Long Island Medium and thought, \\\"I should do this\\\", then this is YOUR sign to do this! \\n\\nThis event is in the Banquet Room Glitz & Go, Beloit\'s finest and newest Banquet Room! \\n\\nBy paying the reservation fee, you are giving your permission to be filmed live on You Tube or Periscope to save your reading! \\nReservation Instructions: Stop in and pre pay at Glitz & Go LLC $ 25.00 per person, in advance. You are encouraged to reserve early, if you choose to wait until the last minute, the price at the door is $30.00 per person. \\n6:30 Registration\\n7:00 Show Time\",\"is_date_only\":false,\"location\":\"Beloit, Wisconsin 53511\",\"name\":\"Jonna Kay \\u0040 Glitz & Go\",\"owner\":{\"name\":\"The Beloit Podcast\",\"category\":\"Education Website\",\"id\":\"876720959038087\"},\"privacy\":\"OPEN\",\"start_time\":\"2015-08-20T18:30:00-0500\",\"timezone\":\"America\\/Chicago\",\"updated_time\":\"2015-08-19T18:59:15+0000\",\"venue\":{\"name\":\"Beloit, Wisconsin 53511\"},\"id\":\"910468652332165\"}','no'),(7109,'_transient_settings_errors','a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:15:\"Settings saved.\";s:4:\"type\";s:7:\"updated\";}}','no'),(10013,'widget_jetpack_display_posts_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(10014,'widget_facebook-likebox','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7409,'sc_project','0','yes'),(7410,'key_sc_security','','yes'),(7411,'sc_invisible','0','yes'),(7479,'gadash_options','{\"ga_dash_apikey\":\"\",\"ga_dash_clientid\":\"\",\"ga_dash_clientsecret\":\"\",\"ga_dash_access_front\":[\"administrator\"],\"ga_dash_access_back\":[\"administrator\"],\"ga_dash_tableid_jail\":\"\",\"ga_dash_style\":\"#1e73be\",\"switch_profile\":0,\"ga_dash_cachetime\":3600,\"ga_dash_tracking\":1,\"ga_dash_tracking_type\":\"universal\",\"ga_dash_default_ua\":\"\",\"ga_dash_anonim\":0,\"ga_dash_userapi\":0,\"ga_event_tracking\":0,\"ga_event_downloads\":\"zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|rar*\",\"ga_track_exclude\":[],\"ga_target_geomap\":\"\",\"ga_realtime_pages\":10,\"ga_dash_token\":\"\",\"ga_dash_refresh_token\":\"\",\"ga_dash_profile_list\":[],\"ga_dash_tableid\":\"\",\"ga_enhanced_links\":0,\"ga_dash_remarketing\":0,\"ga_dash_network\":0,\"ga_dash_adsense\":0,\"ga_speed_samplerate\":1,\"ga_event_bouncerate\":0,\"ga_crossdomain_tracking\":0,\"ga_crossdomain_list\":\"\",\"ga_author_dimindex\":0,\"ga_category_dimindex\":0,\"ga_user_dimindex\":0,\"ga_pubyear_dimindex\":0,\"ga_aff_tracking\":0,\"ga_event_affiliates\":\"\\/out\\/\",\"automatic_updates_minorversion\":1,\"backend_item_reports\":1,\"frontend_item_reports\":0,\"dashboard_widget\":1,\"api_backoff\":0,\"ga_dash_excludesa\":0,\"ga_hash_tracking\":0}','yes'),(7480,'gadwp_version','4.8.1.3','yes'),(7481,'gadwp_got_updated','1','yes'),(7489,'gce_settings_general','a:2:{s:13:\"save_settings\";i:1;s:14:\"always_enqueue\";i:1;}','yes'),(7490,'gce_cpt_setup','1','yes'),(7491,'gce_version','2.2.91','yes'),(7492,'gce_upgrade_has_run','1','yes'),(5136,'_site_transient_timeout_browser_e3d9c0a5da590831cc59aca115b34dd3','1440352384','yes'),(5137,'_site_transient_browser_e3d9c0a5da590831cc59aca115b34dd3','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"44.0.2403.155\";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'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_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=MyISAM AUTO_INCREMENT=1651 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (2,4,'_wp_attached_file','2015/07/thebeloitpodcastbanner.jpg'),(3,4,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:34:\"2015/07/thebeloitpodcastbanner.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"thebeloitpodcastbanner-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:34:\"thebeloitpodcastbanner-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"thebeloitpodcastbanner-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4,5,'_wp_attached_file','2015/07/20150724_113010_20150724115010732.jpg'),(5,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:508;s:6:\"height\";i:687;s:4:\"file\";s:45:\"2015/07/20150724_113010_20150724115010732.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"20150724_113010_20150724115010732-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"20150724_113010_20150724115010732-222x300.jpg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"large-thumb\";a:4:{s:4:\"file\";s:45:\"20150724_113010_20150724115010732-508x650.jpg\";s:5:\"width\";i:508;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"index-thumb\";a:4:{s:4:\"file\";s:45:\"20150724_113010_20150724115010732-508x250.jpg\";s:5:\"width\";i:508;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:45:\"20150724_113010_20150724115010732-508x600.jpg\";s:5:\"width\";i:508;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"ngfb-richpin\";a:4:{s:4:\"file\";s:45:\"20150724_113010_20150724115010732-508x600.jpg\";s:5:\"width\";i:508;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"ngfb-pinterest-button\";a:4:{s:4:\"file\";s:45:\"20150724_113010_20150724115010732-444x600.jpg\";s:5:\"width\";i:444;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"ngfb-buffer-button\";a:4:{s:4:\"file\";s:45:\"20150724_113010_20150724115010732-508x600.jpg\";s:5:\"width\";i:508;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"ngfb-tumblr-button\";a:4:{s:4:\"file\";s:45:\"20150724_113010_20150724115010732-444x600.jpg\";s:5:\"width\";i:444;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6,6,'_wp_attached_file','2015/07/cropped-20150724_113010_20150724115010732.jpg'),(7,6,'_wp_attachment_context','custom-header'),(8,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:55;s:4:\"file\";s:53:\"2015/07/cropped-20150724_113010_20150724115010732.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(9,6,'_wp_attachment_custom_header_last_used_business-leader','1437910879'),(10,6,'_wp_attachment_is_custom_header','business-leader'),(11,7,'_wp_attached_file','2015/07/cropped-thebeloitpodcastbanner.jpg'),(12,7,'_wp_attachment_context','custom-header'),(13,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1979;s:6:\"height\";i:960;s:4:\"file\";s:42:\"2015/07/cropped-thebeloitpodcastbanner.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"cropped-thebeloitpodcastbanner-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:42:\"cropped-thebeloitpodcastbanner-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"cropped-thebeloitpodcastbanner-1024x497.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"blog_img\";a:4:{s:4:\"file\";s:42:\"cropped-thebeloitpodcastbanner-870x400.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"cropped-thebeloitpodcastbanner-55x55.jpg\";s:5:\"width\";i:55;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(14,7,'_wp_attachment_custom_header_last_used_mw-small','1437919628'),(15,7,'_wp_attachment_is_custom_header','mw-small'),(16,8,'_wp_attached_file','2015/07/cropped-thebeloitpodcastbanner1.jpg'),(17,8,'_wp_attachment_context','custom-header'),(18,8,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:414;s:4:\"file\";s:43:\"2015/07/cropped-thebeloitpodcastbanner1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"cropped-thebeloitpodcastbanner1-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:42:\"cropped-thebeloitpodcastbanner1-300x83.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"cropped-thebeloitpodcastbanner1-1024x283.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(19,8,'_wp_attachment_custom_header_last_used_heatmap-adaptive','1437919827'),(20,8,'_wp_attachment_is_custom_header','heatmap-adaptive'),(21,9,'_wp_attached_file','2015/07/cropped-thebeloitpodcastbanner2.jpg'),(22,9,'_wp_attachment_context','custom-header'),(23,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:461;s:4:\"file\";s:43:\"2015/07/cropped-thebeloitpodcastbanner2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"cropped-thebeloitpodcastbanner2-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:42:\"cropped-thebeloitpodcastbanner2-300x92.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"cropped-thebeloitpodcastbanner2-1024x315.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(24,9,'_wp_attachment_custom_header_last_used_willingness','1437920234'),(25,9,'_wp_attachment_is_custom_header','willingness'),(1477,184,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444331988;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:443;}i:1;a:1:{s:2:\"id\";i:242;}i:2;a:1:{s:2:\"id\";i:451;}}}}'),(1476,413,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444088959;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:284;}i:1;a:1:{s:2:\"id\";i:427;}i:2;a:1:{s:2:\"id\";i:515;}}}}'),(1509,443,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1442440876;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:184;}i:1;a:1:{s:2:\"id\";i:138;}i:2;a:1:{s:2:\"id\";i:451;}}}}'),(36,18,'_menu_item_type','custom'),(37,18,'_menu_item_menu_item_parent','0'),(38,18,'_menu_item_object_id','18'),(39,18,'_menu_item_object','custom'),(40,18,'_menu_item_target',''),(41,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42,18,'_menu_item_xfn',''),(43,18,'_menu_item_url','http://thebeloitpod.com/wordpress1/'),(44,18,'_menu_item_orphaned','1437922246'),(45,19,'_menu_item_type','post_type'),(46,19,'_menu_item_menu_item_parent','0'),(47,19,'_menu_item_object_id','10'),(48,19,'_menu_item_object','page'),(49,19,'_menu_item_target',''),(50,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51,19,'_menu_item_xfn',''),(52,19,'_menu_item_url',''),(53,19,'_menu_item_orphaned','1437922246'),(1555,512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:664;s:4:\"file\";s:18:\"2015/09/jcstar.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"jcstar-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:18:\"jcstar-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1554,512,'_wp_attached_file','2015/09/jcstar.jpg'),(1553,511,'_edit_lock','1441834512:1'),(1552,511,'_edit_last','1'),(1487,485,'_su_rich_snippet_type','none'),(1484,485,'_wpas_done_all','1'),(1483,485,'_edit_lock','1440807934:1'),(1482,485,'_edit_last','1'),(1481,485,'_oembed_af1230c100282a9ff2b5e57cd696806c','{{unknown}}'),(90,24,'_menu_item_type','post_type'),(91,24,'_menu_item_menu_item_parent','0'),(92,24,'_menu_item_object_id','10'),(93,24,'_menu_item_object','page'),(94,24,'_menu_item_target',''),(95,24,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(96,24,'_menu_item_xfn',''),(97,24,'_menu_item_url',''),(98,24,'_menu_item_orphaned','1437922272'),(99,25,'_menu_item_type','custom'),(100,25,'_menu_item_menu_item_parent','0'),(101,25,'_menu_item_object_id','25'),(102,25,'_menu_item_object','custom'),(103,25,'_menu_item_target',''),(104,25,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(105,25,'_menu_item_xfn',''),(106,25,'_menu_item_url','http://thebeloitpod.com/wordpress1/'),(107,25,'_menu_item_orphaned','1437937773'),(108,26,'_menu_item_type','post_type'),(109,26,'_menu_item_menu_item_parent','0'),(110,26,'_menu_item_object_id','10'),(111,26,'_menu_item_object','page'),(112,26,'_menu_item_target',''),(113,26,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(114,26,'_menu_item_xfn',''),(115,26,'_menu_item_url',''),(116,26,'_menu_item_orphaned','1437937773'),(1494,485,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1440847731;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:413;}i:1;a:1:{s:2:\"id\";i:284;}i:2;a:1:{s:2:\"id\";i:427;}}}}'),(1491,485,'_um_access_redirect',''),(1490,485,'_um_access_redirect2',''),(1489,485,'_um_accessible','0'),(1488,485,'_um_custom_access_settings','0'),(1560,511,'enclosure','http://traffic.libsyn.com/thebeloitpod/JCStar.mp3\r\n27877676\r\naudio/mpeg\r\na:1:{s:8:\"duration\";s:8:\"00:29:02\";}'),(1557,511,'_wpas_done_all','1'),(1571,515,'_edit_last','1'),(1572,515,'_edit_lock','1441900496:1'),(135,29,'_wp_attached_file','2015/07/thebeloitpodcastbanner1.jpg'),(136,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:35:\"2015/07/thebeloitpodcastbanner1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"thebeloitpodcastbanner1-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:\"thebeloitpodcastbanner1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"thebeloitpodcastbanner1-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"thebeloitpodcastbanner1-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(137,30,'_wp_attached_file','2015/07/thebeloitpodBWlogo-e1437938547687.jpg'),(138,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:45:\"2015/07/thebeloitpodBWlogo-e1437938547687.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"thebeloitpodBWlogo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"thebeloitpodBWlogo-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"thebeloitpodBWlogo-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(139,30,'_edit_lock','1437939118:1'),(140,30,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:512;s:6:\"height\";i:384;s:4:\"file\";s:22:\"thebeloitpodBWlogo.jpg\";}}'),(141,31,'_wp_attached_file','2015/07/thebeloitpodcastbanner2.jpg'),(142,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2015/07/thebeloitpodcastbanner2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"thebeloitpodcastbanner2-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:34:\"thebeloitpodcastbanner2-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"thebeloitpodcastbanner2-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(143,32,'_wp_attached_file','2015/07/thebeloitpodBWlogo2.jpg'),(144,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2015/07/thebeloitpodBWlogo2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"thebeloitpodBWlogo2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"thebeloitpodBWlogo2-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"thebeloitpodBWlogo2-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(145,33,'_wp_attached_file','2015/07/11539031_893770364026665_3718935239763080284_o2.jpg'),(146,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:300;s:4:\"file\";s:59:\"2015/07/11539031_893770364026665_3718935239763080284_o2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"11539031_893770364026665_3718935239763080284_o2-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:58:\"11539031_893770364026665_3718935239763080284_o2-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:59:\"11539031_893770364026665_3718935239763080284_o2-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(147,34,'_wp_attached_file','2015/07/WP_20150711_035.jpg'),(148,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1456;s:6:\"height\";i:2592;s:4:\"file\";s:27:\"2015/07/WP_20150711_035.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"WP_20150711_035-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"WP_20150711_035-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"WP_20150711_035-575x1024.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:2.3999999999999999;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"Lumia 520\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1436630061;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.133\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(149,34,'_wp_attachment_is_custom_background','mantra'),(150,35,'_menu_item_type','custom'),(151,35,'_menu_item_menu_item_parent','0'),(152,35,'_menu_item_object_id','35'),(153,35,'_menu_item_object','custom'),(154,35,'_menu_item_target',''),(155,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(156,35,'_menu_item_xfn',''),(157,35,'_menu_item_url','http://thebeloitpod.com/wordpress1/'),(158,35,'_menu_item_orphaned','1437945683'),(159,36,'_menu_item_type','post_type'),(160,36,'_menu_item_menu_item_parent','0'),(161,36,'_menu_item_object_id','10'),(162,36,'_menu_item_object','page'),(163,36,'_menu_item_target',''),(164,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(165,36,'_menu_item_xfn',''),(166,36,'_menu_item_url',''),(167,36,'_menu_item_orphaned','1437945683'),(1495,427,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1440855971;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:413;}i:1;a:1:{s:2:\"id\";i:284;}i:2;a:1:{s:2:\"id\";i:481;}}}}'),(1565,511,'_um_access_redirect',''),(1564,511,'_um_access_redirect2',''),(1563,511,'_um_accessible','0'),(1562,511,'_um_custom_access_settings','0'),(1561,511,'_su_rich_snippet_type','none'),(1568,511,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1441919910;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:152;}i:1;a:1:{s:2:\"id\";i:94;}i:2;a:1:{s:2:\"id\";i:192;}}}}'),(186,39,'_menu_item_type','custom'),(187,39,'_menu_item_menu_item_parent','0'),(188,39,'_menu_item_object_id','39'),(189,39,'_menu_item_object','custom'),(190,39,'_menu_item_target',''),(191,39,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(192,39,'_menu_item_xfn',''),(193,39,'_menu_item_url','http://thebeloitpod.com/wordpress1/'),(194,39,'_menu_item_orphaned','1437945699'),(195,40,'_menu_item_type','post_type'),(196,40,'_menu_item_menu_item_parent','0'),(197,40,'_menu_item_object_id','10'),(198,40,'_menu_item_object','page'),(199,40,'_menu_item_target',''),(200,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(201,40,'_menu_item_xfn',''),(202,40,'_menu_item_url',''),(203,40,'_menu_item_orphaned','1437945699'),(1530,495,'_thumbnail_id','486'),(1521,495,'_wpas_done_all','1'),(1520,495,'_oembed_0add88d19440ce9d206846e9cbd2635c','{{unknown}}'),(1519,495,'_oembed_5ac38b8b8403ccfc06d640c1f80e35fd','{{unknown}}'),(1576,515,'enclosure','http://traffic.libsyn.com/thebeloitpod/WADRmornings9-10-15.mp3\n38055834\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:39:38\";}'),(1573,515,'_wpas_done_all','1'),(222,43,'_wp_attached_file','2015/07/cropped-cropped-thebeloitpodcastbanner2.jpg'),(223,43,'_wp_attachment_context','custom-header'),(224,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:75;s:4:\"file\";s:51:\"2015/07/cropped-cropped-thebeloitpodcastbanner2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"cropped-cropped-thebeloitpodcastbanner2-150x75.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"cropped-cropped-thebeloitpodcastbanner2-300x20.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"cropped-cropped-thebeloitpodcastbanner2-1024x70.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:50:\"cropped-cropped-thebeloitpodcastbanner2-250x17.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:17;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"cropped-cropped-thebeloitpodcastbanner2-150x10.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:10;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:50:\"cropped-cropped-thebeloitpodcastbanner2-800x75.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(225,43,'_wp_attachment_custom_header_last_used_mantra','1437947816'),(226,43,'_wp_attachment_is_custom_header','mantra'),(227,44,'_wp_attached_file','2015/07/thebeloitpodcastbanner21.jpg'),(228,44,'_wp_attachment_context','custom-header'),(229,45,'_wp_attached_file','2015/07/thebeloitpodcastbanner22.jpg'),(230,45,'_wp_attachment_context','custom-header'),(231,46,'_edit_last','1'),(232,46,'_edit_lock','1439737478:1'),(233,46,'_oembed_80e0c5100ea40100e2afa228092256fe','<iframe width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/CQQJj3rynts?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(234,46,'_oembed_time_80e0c5100ea40100e2afa228092256fe','1437955876'),(235,46,'_wp_page_template','default'),(236,48,'_edit_last','1'),(237,48,'_edit_lock','1439067363:1'),(238,48,'_oembed_136e687b6a0ed3fa57c9d6eda25f1fe5','{{unknown}}'),(239,48,'_wp_page_template','default'),(240,58,'_edit_last','1'),(241,58,'_edit_lock','1438479845:1'),(1543,507,'_um_custom_access_settings','0'),(248,65,'_edit_last','1'),(249,65,'_edit_lock','1438008682:1'),(250,65,'_wp_page_template','default'),(251,58,'_wp_page_template','default'),(257,74,'_edit_last','1'),(258,74,'_edit_lock','1438018910:1'),(259,74,'_bbp_last_active_time','2015-07-27 17:38:54'),(260,74,'_bbp_forum_subforum_count','1'),(261,74,'_bbp_reply_count','0'),(262,74,'_bbp_total_reply_count','0'),(263,74,'_bbp_topic_count','0'),(264,74,'_bbp_total_topic_count','0'),(265,74,'_bbp_topic_count_hidden','0'),(266,76,'_edit_last','1'),(267,76,'_edit_lock','1438018712:1'),(268,76,'_bbp_last_active_time','2015-07-27 17:39:24'),(269,76,'_bbp_forum_subforum_count','0'),(270,76,'_bbp_reply_count','0'),(271,76,'_bbp_total_reply_count','0'),(272,76,'_bbp_topic_count','0'),(273,76,'_bbp_total_topic_count','0'),(274,76,'_bbp_topic_count_hidden','0'),(275,76,'_bbp_last_topic_id','0'),(276,74,'_bbp_last_topic_id','0'),(277,76,'_bbp_last_reply_id','0'),(278,74,'_bbp_last_reply_id','0'),(279,76,'_bbp_last_active_id','0'),(280,74,'_bbp_last_active_id','0'),(281,74,'_bbp_forum_type','category'),(1480,486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2015/08/WADR-logo-e1428883764958.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"WADR-logo-e1428883764958-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:36:\"WADR-logo-e1428883764958-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1479,486,'_wp_attached_file','2015/08/WADR-logo-e1428883764958.jpg'),(1478,144,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1443893335;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:127;}i:1;a:1:{s:2:\"id\";i:167;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(294,82,'_edit_lock','1440299967:1'),(293,82,'_edit_last','1'),(295,82,'_wp_page_template','default'),(300,84,'_edit_last','1'),(301,84,'_edit_lock','1438570919:1'),(302,84,'_bbp_last_active_time','2015-07-28 11:54:51'),(303,84,'_bbp_forum_subforum_count','0'),(304,84,'_bbp_reply_count','0'),(305,84,'_bbp_total_reply_count','0'),(306,84,'_bbp_topic_count','0'),(307,84,'_bbp_total_topic_count','0'),(308,84,'_bbp_topic_count_hidden','0'),(309,84,'_bbp_forum_type','category'),(310,86,'_edit_last','1'),(311,86,'_edit_lock','1438084509:1'),(312,86,'_bbp_last_active_time','2015-08-17 19:16:55'),(313,86,'_bbp_forum_subforum_count','1'),(314,86,'_bbp_reply_count','0'),(315,86,'_bbp_total_reply_count','0'),(316,86,'_bbp_topic_count','0'),(317,86,'_bbp_total_topic_count','1'),(318,86,'_bbp_topic_count_hidden','0'),(319,84,'_bbp_last_topic_id','0'),(320,84,'_bbp_last_reply_id','0'),(321,84,'_bbp_last_active_id','0'),(324,91,'_wp_attached_file','2015/07/cropped-cropped-thebeloitpodcastbanner1.jpg'),(325,91,'_wp_attachment_context','custom-header'),(326,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:230;s:4:\"file\";s:51:\"2015/07/cropped-cropped-thebeloitpodcastbanner1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"cropped-cropped-thebeloitpodcastbanner1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"cropped-cropped-thebeloitpodcastbanner1-300x43.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:43;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"cropped-cropped-thebeloitpodcastbanner1-1024x147.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"cropped-cropped-thebeloitpodcastbanner1-604x230.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(327,91,'_wp_attachment_custom_header_last_used_blogsonry','1438134712'),(328,91,'_wp_attachment_is_custom_header','blogsonry'),(329,92,'_wp_attached_file','2015/07/cropped-cropped-thebeloitpodcastbanner11.jpg'),(330,92,'_wp_attachment_context','custom-header'),(331,92,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:230;s:4:\"file\";s:52:\"2015/07/cropped-cropped-thebeloitpodcastbanner11.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"cropped-cropped-thebeloitpodcastbanner11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"cropped-cropped-thebeloitpodcastbanner11-300x43.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:43;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"cropped-cropped-thebeloitpodcastbanner11-1024x147.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:52:\"cropped-cropped-thebeloitpodcastbanner11-604x230.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(332,92,'_wp_attachment_custom_header_last_used_blogsonry','1438135178'),(333,92,'_wp_attachment_is_custom_header','blogsonry'),(334,93,'_wp_attached_file','2015/07/cropped-cropped-thebeloitpodcastbanner.jpg'),(335,93,'_wp_attachment_context','custom-header'),(336,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:230;s:4:\"file\";s:50:\"2015/07/cropped-cropped-thebeloitpodcastbanner.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"cropped-cropped-thebeloitpodcastbanner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"cropped-cropped-thebeloitpodcastbanner-300x43.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:43;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"cropped-cropped-thebeloitpodcastbanner-1024x147.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"cropped-cropped-thebeloitpodcastbanner-604x230.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(337,93,'_wp_attachment_custom_header_last_used_blogsonry','1438135196'),(338,93,'_wp_attachment_is_custom_header','blogsonry'),(343,94,'_edit_lock','1438198642:1'),(1518,495,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444194583;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:485;}i:1;a:1:{s:2:\"id\";i:515;}i:2;a:1:{s:2:\"id\";i:507;}}}}'),(1517,495,'_um_access_redirect',''),(346,94,'_edit_last','1'),(1508,390,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1441114283;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:344;}i:1;a:1:{s:2:\"id\";i:477;}i:2;a:1:{s:2:\"id\";i:420;}}}}'),(1496,420,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1440977632;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:344;}i:1;a:1:{s:2:\"id\";i:477;}i:2;a:1:{s:2:\"id\";i:390;}}}}'),(378,111,'_edit_lock','1438219476:1'),(379,111,'_edit_last','1'),(383,111,'_oembed_3ea137269e46d7396fd8ca1690cbb4ec','{{unknown}}'),(382,111,'enclosure','http://traffic.libsyn.com/thebeloitpod/TBP-_RichPorter.mp3\n5855815\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:06:06\";}'),(384,114,'_wp_attached_file','2015/07/R.Porter.jpg'),(385,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:960;s:4:\"file\";s:20:\"2015/07/R.Porter.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"R.Porter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"R.Porter-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"R.Porter-84x150.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"R.Porter-84x150.jpg\";s:5:\"width\";i:84;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:20:\"R.Porter-540x100.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:20:\"R.Porter-540x250.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(388,116,'_edit_lock','1438208428:1'),(389,116,'_edit_last','1'),(390,117,'_wp_attached_file','2015/07/Fathersday.jpg'),(391,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:497;s:4:\"file\";s:22:\"2015/07/Fathersday.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Fathersday-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:22:\"Fathersday-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"Fathersday-163x150.jpg\";s:5:\"width\";i:163;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Fathersday-150x138.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"Fathersday-540x100.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"Fathersday-540x250.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(395,119,'_edit_lock','1438216345:1'),(394,116,'enclosure','http://traffic.libsyn.com/thebeloitpod/TbP-FathersDay1.mp3\n6460202\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:06:44\";}'),(396,119,'_edit_last','1'),(397,122,'_wp_attached_file','2015/07/ReeseCoffeeCleveland.jpg'),(398,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:192;s:4:\"file\";s:32:\"2015/07/ReeseCoffeeCleveland.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"ReeseCoffeeCleveland-128x150.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"ReeseCoffeeCleveland-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"ReeseCoffeeCleveland-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"ReeseCoffeeCleveland-128x100.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(402,124,'_edit_lock','1438217145:1'),(401,119,'enclosure','http://traffic.libsyn.com/thebeloitpod/1stMonday2.mp3\n6492375\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:06:46\";}'),(403,124,'_edit_last','1'),(404,125,'_wp_attached_file','2015/07/RodGottfredson.jpg'),(405,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:424;s:4:\"file\";s:26:\"2015/07/RodGottfredson.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"RodGottfredson-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:26:\"RodGottfredson-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"RodGottfredson-226x150.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"RodGottfredson-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"RodGottfredson-640x100.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"RodGottfredson-640x250.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(409,127,'_edit_lock','1438218267:1'),(408,124,'enclosure','http://traffic.libsyn.com/thebeloitpod/TBP-RodGottfredsen.mp3\n9213307\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:09:36\";}'),(410,128,'_wp_attached_file','2015/07/MattPickart.jpg'),(411,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:183;s:6:\"height\";i:275;s:4:\"file\";s:23:\"2015/07/MattPickart.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MattPickart-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"MattPickart-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"MattPickart-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"MattPickart-183x100.jpg\";s:5:\"width\";i:183;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"MattPickart-183x250.jpg\";s:5:\"width\";i:183;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(412,127,'_edit_last','1'),(415,127,'enclosure','http://traffic.libsyn.com/thebeloitpod/TBP-MattPickart.mp3\r\n17845412\r\naudio/mpeg\r\na:1:{s:8:\"duration\";s:8:\"00:18:35\";}'),(418,132,'_edit_lock','1438219086:1'),(419,132,'_edit_last','1'),(420,133,'_wp_attached_file','2015/07/JackKennedy.jpg'),(421,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:296;s:6:\"height\";i:296;s:4:\"file\";s:23:\"2015/07/JackKennedy.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"JackKennedy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"JackKennedy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"JackKennedy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"JackKennedy-296x100.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"JackKennedy-296x250.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(429,136,'_edit_lock','1438220370:1'),(424,132,'enclosure','http://traffic.libsyn.com/thebeloitpod/JackKennedy.mp3\n12711618\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:13:14\";}'),(430,136,'_edit_last','1'),(434,138,'_edit_lock','1438220736:1'),(433,136,'enclosure','http://traffic.libsyn.com/thebeloitpod/2ndMonday.mp3\n6094165\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:06:21\";}'),(435,138,'_edit_last','1'),(436,139,'_wp_attached_file','2015/07/JonnaKay.jpg'),(437,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:582;s:6:\"height\";i:669;s:4:\"file\";s:20:\"2015/07/JonnaKay.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"JonnaKay-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"JonnaKay-261x300.jpg\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:20:\"JonnaKay-130x150.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"JonnaKay-130x150.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:20:\"JonnaKay-582x100.jpg\";s:5:\"width\";i:582;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:20:\"JonnaKay-582x250.jpg\";s:5:\"width\";i:582;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(441,141,'_edit_lock','1438221196:1'),(440,138,'enclosure','http://traffic.libsyn.com/thebeloitpod/JonnaKay.mp3\n14707368\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:15:19\";}'),(442,141,'_edit_last','1'),(443,142,'_wp_attached_file','2015/07/trace.jpg'),(444,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:17:\"2015/07/trace.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"trace-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"trace-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:17:\"trace-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"trace-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:17:\"trace-960x100.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:17:\"trace-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(448,144,'_edit_lock','1438225005:1'),(447,141,'enclosure','http://traffic.libsyn.com/thebeloitpod/TraceThayer.mp3\n14398502\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:15:00\";}'),(449,144,'_edit_last','1'),(450,145,'_wp_attached_file','2015/07/SheilaDeForest.jpg'),(451,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:280;s:4:\"file\";s:26:\"2015/07/SheilaDeForest.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"SheilaDeForest-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"SheilaDeForest-107x150.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"SheilaDeForest-107x150.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"SheilaDeForest-200x100.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"SheilaDeForest-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(455,144,'_oembed_064d0348ebfd112a3c012fd6a1c62c70','{{unknown}}'),(454,144,'enclosure','http://traffic.libsyn.com/thebeloitpod/SheilaDeForest.mp3\r\n10660285\r\naudio/mpeg\r\na:1:{s:8:\"duration\";s:8:\"00:11:06\";}'),(458,148,'_edit_lock','1438225346:1'),(459,148,'_edit_last','1'),(460,149,'_wp_attached_file','2015/07/Emmaplaque.jpg'),(461,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:22:\"2015/07/Emmaplaque.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Emmaplaque-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:22:\"Emmaplaque-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Emmaplaque-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"Emmaplaque-225x150.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Emmaplaque-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"Emmaplaque-1100x100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"Emmaplaque-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(462,150,'_wp_attached_file','2015/07/EmmaGazebo.jpg'),(463,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1024;s:4:\"file\";s:22:\"2015/07/EmmaGazebo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"EmmaGazebo-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:22:\"EmmaGazebo-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"EmmaGazebo-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"EmmaGazebo-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"EmmaGazebo-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"EmmaGazebo-768x100.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"EmmaGazebo-768x250.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(467,152,'_edit_lock','1438258600:1'),(466,148,'enclosure','http://traffic.libsyn.com/thebeloitpod/friday2.mp3\n4558848\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:04:45\";}'),(468,152,'_edit_last','1'),(469,153,'_wp_attached_file','2015/07/dariousPittman.jpg'),(470,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:26:\"2015/07/dariousPittman.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"dariousPittman-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:26:\"dariousPittman-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"dariousPittman-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"dariousPittman-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"dariousPittman-640x100.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"dariousPittman-640x250.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(474,155,'_edit_lock','1438261829:1'),(473,152,'enclosure','http://traffic.libsyn.com/thebeloitpod/DariousPittman3.mp3\n26099705\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:27:11\";}'),(475,155,'_edit_last','1'),(476,156,'_wp_attached_file','2015/07/monetization.jpg'),(477,156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:24:\"2015/07/monetization.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"monetization-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"monetization-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"monetization-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"monetization-225x100.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(481,158,'_edit_lock','1438262316:1'),(480,155,'enclosure','http://traffic.libsyn.com/thebeloitpod/Monetization.mp3\n8877262\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:09:15\";}'),(482,158,'_edit_last','1'),(483,159,'_wp_attached_file','2015/07/BeloitFlag.jpg'),(484,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:887;s:4:\"file\";s:22:\"2015/07/BeloitFlag.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"BeloitFlag-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:22:\"BeloitFlag-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"BeloitFlag-1024x606.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"BeloitFlag-250x148.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"BeloitFlag-150x89.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"BeloitFlag-1100x100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"BeloitFlag-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1436386568;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(490,161,'_edit_lock','1438262631:1'),(489,158,'enclosure','http://traffic.libsyn.com/thebeloitpod/BeloitWiki.mp3\n13585580\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:14:09\";}'),(491,161,'_edit_last','1'),(492,162,'_wp_attached_file','2015/07/AdamGasser.jpg'),(493,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:426;s:4:\"file\";s:22:\"2015/07/AdamGasser.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"AdamGasser-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:22:\"AdamGasser-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"AdamGasser-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"AdamGasser-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"AdamGasser-320x100.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"AdamGasser-320x250.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(497,164,'_edit_lock','1438264043:1'),(496,161,'enclosure','http://traffic.libsyn.com/thebeloitpod/AdamGasser.mp3\n14466210\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:15:04\";}'),(498,164,'_edit_last','1'),(499,165,'_wp_attached_file','2015/07/bighill.jpg'),(500,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:992;s:4:\"file\";s:19:\"2015/07/bighill.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bighill-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:19:\"bighill-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"bighill-1024x794.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:794;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"bighill-194x150.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"bighill-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:20:\"bighill-1100x100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:19:\"bighill-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(506,167,'_edit_lock','1438264077:1'),(505,164,'enclosure','http://traffic.libsyn.com/thebeloitpod/Bighills.mp3\n8698786\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:09:04\";}'),(507,167,'_edit_last','1'),(508,168,'_wp_attached_file','2015/07/DorothyDavis.jpg'),(509,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:480;s:4:\"file\";s:24:\"2015/07/DorothyDavis.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"DorothyDavis-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:\"DorothyDavis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"DorothyDavis-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"DorothyDavis-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"DorothyDavis-480x100.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:24:\"DorothyDavis-480x250.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(513,170,'_edit_lock','1438264328:1'),(512,167,'enclosure','http://traffic.libsyn.com/thebeloitpod/DorothyDavis.mp3\n8857621\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:09:14\";}'),(514,170,'_edit_last','1'),(515,171,'_wp_attached_file','2015/07/250px-New_Madrid_Erdbeben.jpg'),(516,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:179;s:4:\"file\";s:37:\"2015/07/250px-New_Madrid_Erdbeben.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"250px-New_Madrid_Erdbeben-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:37:\"250px-New_Madrid_Erdbeben-209x150.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"250px-New_Madrid_Erdbeben-150x107.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:37:\"250px-New_Madrid_Erdbeben-250x100.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(520,173,'_edit_lock','1438264713:1'),(519,170,'enclosure','http://traffic.libsyn.com/thebeloitpod/Madridfault.mp3\n17759774\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:18:30\";}'),(521,173,'_edit_last','1'),(522,174,'_wp_attached_file','2015/07/KylieThompson.jpg'),(523,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:25:\"2015/07/KylieThompson.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"KylieThompson-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:25:\"KylieThompson-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"KylieThompson-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"KylieThompson-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"KylieThompson-900x100.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"KylieThompson-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(527,176,'_edit_lock','1438264918:1'),(526,173,'enclosure','http://traffic.libsyn.com/thebeloitpod/KylieThompsonMB20152.mp3\n6368709\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:06:38\";}'),(528,176,'_edit_last','1'),(529,177,'_wp_attached_file','2015/07/TBPguest.jpg'),(530,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:384;s:4:\"file\";s:20:\"2015/07/TBPguest.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"TBPguest-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"TBPguest-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:20:\"TBPguest-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"TBPguest-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:20:\"TBPguest-512x100.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:20:\"TBPguest-512x250.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(534,179,'_edit_lock','1438265121:1'),(533,176,'enclosure','http://traffic.libsyn.com/thebeloitpod/GuestsEP.mp3\n5356408\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:05:35\";}'),(535,179,'_edit_last','1'),(536,180,'_wp_attached_file','2015/07/Fig_1_Eight_Forms_of_Captial.png'),(537,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:743;s:6:\"height\";i:308;s:4:\"file\";s:40:\"2015/07/Fig_1_Eight_Forms_of_Captial.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fig_1_Eight_Forms_of_Captial-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:40:\"Fig_1_Eight_Forms_of_Captial-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:40:\"Fig_1_Eight_Forms_of_Captial-250x104.png\";s:5:\"width\";i:250;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"Fig_1_Eight_Forms_of_Captial-150x62.png\";s:5:\"width\";i:150;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:40:\"Fig_1_Eight_Forms_of_Captial-743x100.png\";s:5:\"width\";i:743;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:40:\"Fig_1_Eight_Forms_of_Captial-743x250.png\";s:5:\"width\";i:743;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:40:\"Fig_1_Eight_Forms_of_Captial-600x308.png\";s:5:\"width\";i:600;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(541,182,'_edit_lock','1438265938:1'),(540,179,'enclosure','http://traffic.libsyn.com/thebeloitpod/Permaculture_and_the_8_forms_of_capital.mp3\n19999628\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:20:50\";}'),(542,182,'_edit_last','1'),(546,184,'_edit_lock','1438266479:1'),(545,182,'enclosure','http://traffic.libsyn.com/thebeloitpod/Monday7-20.mp3\n10615552\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:11:03\";}'),(547,184,'_edit_last','1'),(548,185,'_wp_attached_file','2015/07/keytoothersideJonna.jpg'),(549,185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:709;s:4:\"file\";s:31:\"2015/07/keytoothersideJonna.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"keytoothersideJonna-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"keytoothersideJonna-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"keytoothersideJonna-203x150.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"keytoothersideJonna-150x111.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"keytoothersideJonna-960x100.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:31:\"keytoothersideJonna-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(550,186,'_wp_attached_file','2015/07/travestyinWI.jpg'),(551,186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:683;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2015/07/travestyinWI.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"travestyinWI-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:\"travestyinWI-213x300.jpg\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"travestyinWI-107x150.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"travestyinWI-107x150.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"travestyinWI-683x100.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:24:\"travestyinWI-683x250.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:24:\"travestyinWI-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(554,184,'enclosure','http://traffic.libsyn.com/thebeloitpod/Events.mp3\n6546727\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:06:49\";}'),(1501,492,'_su_rich_snippet_type','none'),(557,189,'_wp_attached_file','2015/07/hervey.jpg'),(558,189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:757;s:4:\"file\";s:18:\"2015/07/hervey.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"hervey-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:18:\"hervey-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"hervey-1024x646.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:18:\"hervey-238x150.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"hervey-150x95.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"hervey-1100x100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:18:\"hervey-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(559,190,'_wp_attached_file','2015/07/AndyG.jpg'),(560,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:339;s:6:\"height\";i:461;s:4:\"file\";s:17:\"2015/07/AndyG.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"AndyG-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"AndyG-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:17:\"AndyG-110x150.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"AndyG-110x150.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:17:\"AndyG-339x100.jpg\";s:5:\"width\";i:339;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:17:\"AndyG-339x250.jpg\";s:5:\"width\";i:339;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(567,192,'_edit_lock','1438268109:1'),(1500,492,'_wpas_done_all','1'),(1497,492,'_edit_last','1'),(1498,492,'_edit_lock','1440961974:1'),(1499,492,'_wp_page_template','default'),(568,192,'_edit_last','1'),(569,193,'_wp_attached_file','2015/07/seanpatrick.jpg'),(570,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/seanpatrick.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"seanpatrick-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:23:\"seanpatrick-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"seanpatrick-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"seanpatrick-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"seanpatrick-720x100.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"seanpatrick-720x250.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:23:\"seanpatrick-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(574,195,'_edit_lock','1438267855:1'),(573,192,'enclosure','http://traffic.libsyn.com/thebeloitpod/SeanPatrick.mp3\r\n21833995\r\naudio/mpeg\r\na:1:{s:8:\"duration\";s:8:\"00:22:45\";}'),(575,195,'_edit_last','1'),(576,196,'_wp_attached_file','2015/07/tindogrecords.jpg'),(577,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:695;s:4:\"file\";s:25:\"2015/07/tindogrecords.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"tindogrecords-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:25:\"tindogrecords-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"tindogrecords-207x150.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"tindogrecords-150x109.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"tindogrecords-960x100.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"tindogrecords-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:25:\"tindogrecords-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(580,195,'enclosure','http://traffic.libsyn.com/thebeloitpod/Tin_Dog_records.mp3\n10202236\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:10:38\";}'),(581,195,'_wpmem_block','0'),(1507,220,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1441029665;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:182;}i:1;a:1:{s:2:\"id\";i:176;}i:2;a:1:{s:2:\"id\";i:179;}}}}'),(1506,409,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444125792;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:481;}i:1;a:1:{s:2:\"id\";i:127;}i:2;a:1:{s:2:\"id\";i:195;}}}}'),(1505,492,'_um_access_redirect',''),(1504,492,'_um_access_redirect2',''),(587,132,'_wpmem_block','0'),(588,127,'_wpmem_block','0'),(589,124,'_wpmem_block','0'),(590,119,'_wpmem_block','0'),(591,120,'_wpmem_block','0'),(592,116,'_wpmem_block','0'),(593,111,'_wpmem_block','0'),(594,94,'_wpmem_block','0'),(1503,492,'_um_accessible','0'),(1502,492,'_um_custom_access_settings','0'),(600,184,'_wpmem_block','0'),(599,192,'_wpmem_block','0'),(601,182,'_wpmem_block','0'),(602,179,'_wpmem_block','0'),(603,176,'_wpmem_block','0'),(604,173,'_wpmem_block','0'),(605,170,'_wpmem_block','0'),(606,167,'_wpmem_block','0'),(607,164,'_wpmem_block','0'),(608,161,'_wpmem_block','0'),(609,158,'_wpmem_block','0'),(610,155,'_wpmem_block','0'),(611,152,'_wpmem_block','0'),(612,148,'_wpmem_block','0'),(613,144,'_wpmem_block','0'),(614,141,'_wpmem_block','0'),(615,138,'_wpmem_block','0'),(616,136,'_wpmem_block','0'),(617,205,'_wp_attached_file','2015/07/thebeloitpodcastWIKIbanner.jpg'),(618,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:562;s:4:\"file\";s:38:\"2015/07/thebeloitpodcastWIKIbanner.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"thebeloitpodcastWIKIbanner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"thebeloitpodcastWIKIbanner-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:38:\"thebeloitpodcastWIKIbanner-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"thebeloitpodcastWIKIbanner-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:39:\"thebeloitpodcastWIKIbanner-1000x100.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:38:\"thebeloitpodcastWIKIbanner-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:38:\"thebeloitpodcastWIKIbanner-600x562.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(619,216,'_edit_lock','1438788949:1'),(620,216,'_edit_last','1'),(621,218,'_wp_attached_file','2015/07/riot.jpg'),(622,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:16:\"2015/07/riot.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"riot-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:16:\"riot-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:16:\"riot-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"riot-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:16:\"riot-960x100.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:16:\"riot-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:16:\"riot-600x540.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(627,220,'_edit_lock','1438379957:1'),(625,216,'enclosure','http://traffic.libsyn.com/thebeloitpod/Nationwideriots.mp3\n16311932\naudio/mpeg\na:1:{s:8:\"duration\";s:7:\"0:16:59\";}'),(626,216,'_wpmem_block','0'),(628,220,'_edit_last','1'),(629,221,'_wp_attached_file','2015/07/thebeloitpodcastbanner3.jpg'),(630,221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:35:\"2015/07/thebeloitpodcastbanner3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"thebeloitpodcastbanner3-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:\"thebeloitpodcastbanner3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"thebeloitpodcastbanner3-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"thebeloitpodcastbanner3-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"thebeloitpodcastbanner3-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:36:\"thebeloitpodcastbanner3-1100x100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:35:\"thebeloitpodcastbanner3-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:35:\"thebeloitpodcastbanner3-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(633,220,'enclosure','http://traffic.libsyn.com/thebeloitpod/BeloitPodcom.mp3\n7261070\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:07:34\";}'),(634,220,'_wpmem_block','0'),(639,225,'_edit_lock','1438445053:1'),(640,225,'_edit_last','1'),(643,225,'_wpmem_block','0'),(646,229,'_edit_lock','1438570873:1'),(647,229,'_edit_last','1'),(648,229,'_bbp_last_active_time','2015-08-11 02:23:21'),(649,229,'_bbp_forum_subforum_count','0'),(650,229,'_bbp_reply_count','0'),(651,229,'_bbp_total_reply_count','0'),(652,229,'_bbp_topic_count','1'),(653,229,'_bbp_total_topic_count','1'),(654,229,'_bbp_topic_count_hidden','0'),(655,231,'_edit_lock','1438570958:1'),(656,231,'_edit_last','1'),(657,231,'_bbp_last_active_time','2015-08-03 03:02:40'),(658,231,'_bbp_forum_subforum_count','0'),(659,231,'_bbp_reply_count','0'),(660,231,'_bbp_total_reply_count','0'),(661,231,'_bbp_topic_count','0'),(662,231,'_bbp_total_topic_count','0'),(663,231,'_bbp_topic_count_hidden','0'),(664,229,'_bbp_last_topic_id','383'),(665,229,'_bbp_last_reply_id','383'),(666,229,'_bbp_last_active_id','383'),(667,231,'_bbp_last_topic_id','0'),(668,231,'_bbp_last_reply_id','0'),(669,231,'_bbp_last_active_id','0'),(670,234,'_edit_lock','1438571284:1'),(671,234,'_edit_last','1'),(672,234,'_bbp_last_active_time','2015-08-03 03:05:29'),(673,234,'_bbp_forum_subforum_count','0'),(674,234,'_bbp_reply_count','0'),(675,234,'_bbp_total_reply_count','0'),(676,234,'_bbp_topic_count','0'),(677,234,'_bbp_total_topic_count','0'),(678,234,'_bbp_topic_count_hidden','0'),(679,234,'_bbp_last_topic_id','0'),(680,234,'_bbp_last_reply_id','0'),(681,234,'_bbp_last_active_id','0'),(682,238,'_edit_lock','1438571473:1'),(683,238,'_edit_last','1'),(684,238,'_bbp_last_active_time','2015-08-03 03:12:12'),(685,238,'_bbp_forum_subforum_count','0'),(686,238,'_bbp_reply_count','0'),(687,238,'_bbp_total_reply_count','0'),(688,238,'_bbp_topic_count','0'),(689,238,'_bbp_total_topic_count','0'),(690,238,'_bbp_topic_count_hidden','0'),(691,240,'ml-slider_settings','a:35:{s:4:\"type\";s:4:\"flex\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"300\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3000\";s:6:\"sDelay\";s:2:\"30\";s:7:\"opacity\";s:1:\"0\";s:10:\"titleSpeed\";s:3:\"500\";s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:5:\"false\";s:5:\"links\";s:5:\"false\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:3:\"600\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i:15;s:6:\"center\";s:5:\"false\";s:9:\"smartCrop\";s:4:\"true\";s:12:\"carouselMode\";s:5:\"false\";s:14:\"carouselMargin\";s:1:\"5\";s:6:\"easing\";s:6:\"linear\";s:8:\"autoPlay\";s:4:\"true\";s:11:\"thumb_width\";i:150;s:12:\"thumb_height\";i:100;s:9:\"fullWidth\";s:5:\"false\";s:10:\"noConflict\";s:4:\"true\";s:12:\"smoothHeight\";s:5:\"false\";}'),(692,168,'ml-slider_type','image'),(693,168,'_wp_attachment_backup_sizes','a:2:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:107:\"WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/07/DorothyDavis-700x300.jpg\";s:4:\"file\";s:24:\"DorothyDavis-700x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-480x205\";a:5:{s:4:\"path\";s:108:\"\\WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/07/DorothyDavis-480x205.jpg\";s:4:\"file\";s:24:\"DorothyDavis-480x205.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(694,196,'ml-slider_type','image'),(695,196,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:109:\"\\WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/07/tindogrecords-700x300.jpg\";s:4:\"file\";s:25:\"tindogrecords-700x300.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(696,162,'ml-slider_type','image'),(697,162,'_wp_attachment_backup_sizes','a:2:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:105:\"WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/07/AdamGasser-700x300.jpg\";s:4:\"file\";s:22:\"AdamGasser-700x300.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-320x137\";a:5:{s:4:\"path\";s:106:\"\\WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/07/AdamGasser-320x137.jpg\";s:4:\"file\";s:22:\"AdamGasser-320x137.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(698,241,'_wp_attached_file','2015/08/cropped-new-logo-beloit1.png'),(699,241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:117;s:4:\"file\";s:36:\"2015/08/cropped-new-logo-beloit1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cropped-new-logo-beloit1-150x117.png\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"cropped-new-logo-beloit1-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"cropped-new-logo-beloit1-250x91.png\";s:5:\"width\";i:250;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"cropped-new-logo-beloit1-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:36:\"cropped-new-logo-beloit1-320x100.png\";s:5:\"width\";i:320;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(700,241,'ml-slider_type','image'),(701,241,'_wp_attachment_backup_sizes','a:3:{s:15:\"resized-150x150\";a:5:{s:4:\"path\";s:119:\"WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/08/cropped-new-logo-beloit1-150x150.png\";s:4:\"file\";s:36:\"cropped-new-logo-beloit1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:119:\"WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/08/cropped-new-logo-beloit1-700x300.png\";s:4:\"file\";s:36:\"cropped-new-logo-beloit1-700x300.png\";s:5:\"width\";i:320;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"resized-273x117\";a:5:{s:4:\"path\";s:120:\"\\WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/08/cropped-new-logo-beloit1-273x117.png\";s:4:\"file\";s:36:\"cropped-new-logo-beloit1-273x117.png\";s:5:\"width\";i:273;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}}'),(702,114,'ml-slider_type','image'),(703,114,'_wp_attachment_backup_sizes','a:2:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:103:\"WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/07/R.Porter-700x300.jpg\";s:4:\"file\";s:20:\"R.Porter-700x300.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-540x231\";a:5:{s:4:\"path\";s:104:\"\\WDPDFS308563033004658usersites4795691.sitewwwwordpress1/wp-content/uploads/2015/07/R.Porter-540x231.jpg\";s:4:\"file\";s:20:\"R.Porter-540x231.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(704,168,'ml-slider_url','https://www.facebook.com/candyrain.crafts?fref=ts'),(705,168,'ml-slider_crop_position','center-center'),(706,168,'_wp_attachment_image_alt',''),(707,168,'ml-slider_new_window','true'),(708,196,'ml-slider_url','http://www.tindogrecords.com'),(709,196,'ml-slider_crop_position','center-center'),(710,196,'_wp_attachment_image_alt',''),(711,196,'ml-slider_new_window','true'),(712,162,'ml-slider_url','https://www.reverbnation.com/earthtoclark'),(713,162,'ml-slider_crop_position','center-center'),(714,162,'_wp_attachment_image_alt',''),(715,162,'ml-slider_new_window','true'),(716,241,'ml-slider_url','http://www.beloitauction.com'),(717,241,'ml-slider_crop_position','center-center'),(718,241,'_wp_attachment_image_alt',''),(719,241,'ml-slider_new_window','true'),(720,114,'ml-slider_url','https://www.facebook.com/ladolphlius.richardson'),(721,114,'ml-slider_crop_position','center-center'),(722,114,'_wp_attachment_image_alt',''),(723,114,'ml-slider_new_window','true'),(724,242,'_edit_lock','1441647850:1'),(725,242,'_edit_last','1'),(730,244,'_edit_lock','1438793167:1'),(728,242,'enclosure','http://traffic.libsyn.com/thebeloitpod/BrendaMIForum.mp3\n11595300\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:12:05\";}'),(729,242,'_wpmem_block','0'),(731,244,'_edit_last','1'),(732,245,'_wp_attached_file','2015/08/eastmancollage.jpg'),(733,245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:430;s:4:\"file\";s:26:\"2015/08/eastmancollage.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"eastmancollage-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:26:\"eastmancollage-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"eastmancollage-174x150.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"eastmancollage-150x129.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"eastmancollage-500x100.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"eastmancollage-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(736,244,'enclosure','http://traffic.libsyn.com/thebeloitpod/CharlesEastman.mp3\r\n17064272\r\naudio/mpeg\r\na:1:{s:8:\"duration\";s:8:\"00:17:47\";}'),(737,244,'_wpmem_block','0'),(744,252,'_edit_lock','1439048868:1'),(745,252,'_edit_last','1'),(748,252,'_wpmem_block','0'),(1118,413,'_um_access_redirect2',''),(1117,413,'_um_accessible','0'),(1108,413,'_edit_lock','1439512407:1'),(1110,414,'_wp_attached_file','2015/08/omp-radio2.jpg'),(1111,414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:956;s:6:\"height\";i:801;s:4:\"file\";s:22:\"2015/08/omp-radio2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"omp-radio2-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:22:\"omp-radio2-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"omp-radio2-179x150.jpg\";s:5:\"width\";i:179;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"omp-radio2-150x126.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"omp-radio2-956x200.jpg\";s:5:\"width\";i:956;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"omp-radio2-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:22:\"omp-radio2-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1112,413,'_thumbnail_id','414'),(1115,413,'enclosure','http://traffic.libsyn.com/thebeloitpod/OMP_After_Show-TBP.mp3\n25933772\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:27:01\";}'),(1116,413,'_um_custom_access_settings','0'),(1107,413,'_edit_last','1'),(757,259,'_edit_lock','1438867565:1'),(758,259,'_edit_last','1'),(759,260,'_wp_attached_file','2015/08/AdamGasserthumb.jpg'),(760,260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:27:\"2015/08/AdamGasserthumb.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"AdamGasserthumb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"AdamGasserthumb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"AdamGasserthumb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"AdamGasserthumb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"AdamGasserthumb-320x100.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:27:\"AdamGasserthumb-320x250.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(761,261,'_wp_attached_file','2015/08/beloitauction.png'),(762,261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2015/08/beloitauction.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"beloitauction-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:25:\"beloitauction-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"beloitauction-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"beloitauction-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"beloitauction-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(763,262,'_wp_attached_file','2015/08/beloitauction1.png'),(764,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2015/08/beloitauction1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"beloitauction1-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:26:\"beloitauction1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"beloitauction1-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"beloitauction1-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"beloitauction1-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(765,263,'_wp_attached_file','2015/08/adam-gasser.png'),(766,263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2015/08/adam-gasser.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"adam-gasser-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:23:\"adam-gasser-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"adam-gasser-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"adam-gasser-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"adam-gasser-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1515,495,'_um_accessible','0'),(1514,495,'_um_custom_access_settings','0'),(1516,495,'_um_access_redirect2',''),(771,265,'_wp_attached_file','2015/08/the-beloitpodcasttwitter.png'),(772,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:500;s:4:\"file\";s:36:\"2015/08/the-beloitpodcasttwitter.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"the-beloitpodcasttwitter-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:\"the-beloitpodcasttwitter-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"the-beloitpodcasttwitter-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"the-beloitpodcasttwitter-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"the-beloitpodcasttwitter-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:37:\"the-beloitpodcasttwitter-1070x100.png\";s:5:\"width\";i:1070;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"the-beloitpodcasttwitter-800x250.png\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(773,266,'_wp_attached_file','2015/08/cropped-the-beloitpodcasttwitter.png'),(774,266,'_wp_attachment_context','custom-header'),(775,266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1070;s:6:\"height\";i:100;s:4:\"file\";s:44:\"2015/08/cropped-the-beloitpodcasttwitter.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"cropped-the-beloitpodcasttwitter-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"cropped-the-beloitpodcasttwitter-300x28.png\";s:5:\"width\";i:300;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"cropped-the-beloitpodcasttwitter-1024x96.png\";s:5:\"width\";i:1024;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:43:\"cropped-the-beloitpodcasttwitter-250x23.png\";s:5:\"width\";i:250;s:6:\"height\";i:23;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"cropped-the-beloitpodcasttwitter-150x14.png\";s:5:\"width\";i:150;s:6:\"height\";i:14;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:44:\"cropped-the-beloitpodcasttwitter-800x100.png\";s:5:\"width\";i:800;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(776,266,'_wp_attachment_custom_header_last_used_mantra','1438956713'),(777,266,'_wp_attachment_is_custom_header','mantra'),(779,268,'_edit_lock','1438960098:1'),(780,268,'_edit_last','1'),(781,269,'_wp_attached_file','2015/08/the-beloitpodcasttwitter1.png'),(782,269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:500;s:4:\"file\";s:37:\"2015/08/the-beloitpodcasttwitter1.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"the-beloitpodcasttwitter1-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:37:\"the-beloitpodcasttwitter1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"the-beloitpodcasttwitter1-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:36:\"the-beloitpodcasttwitter1-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"the-beloitpodcasttwitter1-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:38:\"the-beloitpodcasttwitter1-1070x100.png\";s:5:\"width\";i:1070;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:37:\"the-beloitpodcasttwitter1-800x250.png\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(783,268,'_thumbnail_id','269'),(784,270,'_wp_attached_file','2015/08/candyrainbanner.png'),(785,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2015/08/candyrainbanner.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"candyrainbanner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"candyrainbanner-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"candyrainbanner-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"candyrainbanner-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"candyrainbanner-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(786,271,'_wp_attached_file','2015/08/dariouspittmanbanner.png'),(787,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:32:\"2015/08/dariouspittmanbanner.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"dariouspittmanbanner-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:32:\"dariouspittmanbanner-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"dariouspittmanbanner-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"dariouspittmanbanner-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"dariouspittmanbanner-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(788,272,'_wp_attached_file','2015/08/TRACETHAYERBANNER.png'),(789,272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:29:\"2015/08/TRACETHAYERBANNER.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"TRACETHAYERBANNER-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:29:\"TRACETHAYERBANNER-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:28:\"TRACETHAYERBANNER-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"TRACETHAYERBANNER-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"TRACETHAYERBANNER-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(790,273,'_wp_attached_file','2015/08/Jonna-The-Happy-Medium.png'),(791,273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:34:\"2015/08/Jonna-The-Happy-Medium.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Jonna-The-Happy-Medium-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:34:\"Jonna-The-Happy-Medium-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"Jonna-The-Happy-Medium-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Jonna-The-Happy-Medium-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"Jonna-The-Happy-Medium-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(792,274,'_wp_attached_file','2015/08/Rich-porterbanner3.jpg'),(793,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2015/08/Rich-porterbanner3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Rich-porterbanner3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Rich-porterbanner3-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"Rich-porterbanner3-250x83.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Rich-porterbanner3-150x50.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"Rich-porterbanner3-600x100.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(794,275,'_wp_attached_file','2015/08/candyrainbanner1.png'),(795,275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2015/08/candyrainbanner1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"candyrainbanner1-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:28:\"candyrainbanner1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"candyrainbanner1-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"candyrainbanner1-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:28:\"candyrainbanner1-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(796,276,'_wp_attached_file','2015/08/dariouspittmanbanner1.png'),(797,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2015/08/dariouspittmanbanner1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"dariouspittmanbanner1-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:33:\"dariouspittmanbanner1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"dariouspittmanbanner1-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"dariouspittmanbanner1-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:33:\"dariouspittmanbanner1-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(798,277,'_wp_attached_file','2015/08/TRACETHAYERBANNER1.png'),(799,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2015/08/TRACETHAYERBANNER1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"TRACETHAYERBANNER1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"TRACETHAYERBANNER1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"TRACETHAYERBANNER1-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"TRACETHAYERBANNER1-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"TRACETHAYERBANNER1-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(800,278,'_wp_attached_file','2015/08/Earthtoclarkbanner2.jpg'),(801,278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:31:\"2015/08/Earthtoclarkbanner2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Earthtoclarkbanner2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Earthtoclarkbanner2-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"Earthtoclarkbanner2-250x83.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"Earthtoclarkbanner2-150x50.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"Earthtoclarkbanner2-600x100.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(802,279,'_wp_attached_file','2015/08/AUSTINSBARBERBANNER.png'),(803,279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:31:\"2015/08/AUSTINSBARBERBANNER.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"AUSTINSBARBERBANNER-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"AUSTINSBARBERBANNER-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"AUSTINSBARBERBANNER-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"AUSTINSBARBERBANNER-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"AUSTINSBARBERBANNER-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(804,280,'_wp_attached_file','2015/08/AUSTINSBARBERBANNER-1.png'),(805,280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2015/08/AUSTINSBARBERBANNER-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"AUSTINSBARBERBANNER-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"AUSTINSBARBERBANNER-1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"AUSTINSBARBERBANNER-1-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"AUSTINSBARBERBANNER-1-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:33:\"AUSTINSBARBERBANNER-1-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(806,281,'_wp_attached_file','2015/08/tindogbanner.png'),(807,281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2015/08/tindogbanner.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"tindogbanner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"tindogbanner-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"tindogbanner-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"tindogbanner-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"tindogbanner-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(808,284,'_edit_lock','1438985680:1'),(809,284,'_edit_last','1'),(812,287,'_wp_attached_file','2015/08/Lil-ChiefBANNER.png'),(813,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2015/08/Lil-ChiefBANNER.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Lil-ChiefBANNER-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Lil-ChiefBANNER-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"Lil-ChiefBANNER-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Lil-ChiefBANNER-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"Lil-ChiefBANNER-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(814,288,'_wp_attached_file','2015/08/BackyardBBQ.png'),(815,288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2015/08/BackyardBBQ.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"BackyardBBQ-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:23:\"BackyardBBQ-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"BackyardBBQ-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"BackyardBBQ-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"BackyardBBQ-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1142,422,'_edit_last','1'),(1513,495,'_su_rich_snippet_type','none'),(1512,495,'enclosure','http://traffic.libsyn.com/thebeloitpod/Lateshow9-4-15.mp3\r\n58957498\r\naudio/mpeg\r\na:1:{s:8:\"duration\";s:7:\"1:01:25\";}'),(1511,495,'_edit_lock','1441833776:1'),(1510,495,'_edit_last','1'),(1582,515,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1443511835;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:495;}i:1;a:1:{s:2:\"id\";i:485;}i:2;a:1:{s:2:\"id\";i:413;}}}}'),(1581,515,'_um_access_redirect',''),(826,297,'wpsc_order_status','In Progress'),(827,297,'wpsc_cart_items','a:1:{i:2;a:7:{s:4:\"name\";s:42:\"TBP Settlers Membership-One Month(30 days)\";s:5:\"price\";s:1:\".\";s:10:\"price_orig\";s:1:\".\";s:8:\"quantity\";i:1;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:56:\"http://thebeloitpod.com/wordpress1/index.php/products-2/\";s:11:\"item_number\";s:0:\"\";}}'),(828,298,'_wp_attached_file','2015/08/TBP-EXPLORERS.png'),(829,298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2015/08/TBP-EXPLORERS.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"TBP-EXPLORERS-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:25:\"TBP-EXPLORERS-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"TBP-EXPLORERS-180x150.png\";s:5:\"width\";i:180;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"TBP-EXPLORERS-150x125.png\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"TBP-EXPLORERS-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"TBP-EXPLORERS-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(830,299,'_wp_attached_file','2015/08/OMPbanner.png'),(831,299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2015/08/OMPbanner.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"OMPbanner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"OMPbanner-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:20:\"OMPbanner-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"OMPbanner-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:21:\"OMPbanner-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(832,300,'_wp_attached_file','2015/08/TBPIONEERS.png'),(833,300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/08/TBPIONEERS.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"TBPIONEERS-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:22:\"TBPIONEERS-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"TBPIONEERS-180x150.png\";s:5:\"width\";i:180;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"TBPIONEERS-150x125.png\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"TBPIONEERS-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"TBPIONEERS-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1545,507,'_um_access_redirect2',''),(1544,507,'_um_accessible','0'),(843,309,'wpsc_order_status','In Progress'),(844,309,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:30:\"TBP Pioneers annual membership\";s:5:\"price\";s:0:\"\";s:10:\"price_orig\";s:0:\"\";s:8:\"quantity\";i:3;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:56:\"http://thebeloitpod.com/wordpress1/index.php/products-2/\";s:11:\"item_number\";s:0:\"\";}}'),(836,304,'_edit_lock','1439052178:1'),(837,304,'_edit_last','1'),(838,305,'_wp_attached_file','2015/08/SUPPORT.png'),(839,305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:19:\"2015/08/SUPPORT.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"SUPPORT-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"SUPPORT-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"SUPPORT-180x150.png\";s:5:\"width\";i:180;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"SUPPORT-150x125.png\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"SUPPORT-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:19:\"SUPPORT-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(840,304,'_wp_page_template','default'),(841,307,'wpsc_order_status','In Progress'),(842,307,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:31:\"TBP Pioneer Membership-One Year\";s:5:\"price\";s:1:\".\";s:10:\"price_orig\";s:1:\".\";s:8:\"quantity\";i:1;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:56:\"http://thebeloitpod.com/wordpress1/index.php/products-2/\";s:11:\"item_number\";s:0:\"\";}}'),(1541,507,'enclosure','http://traffic.libsyn.com/thebeloitpod/WADRmornings9-8-15.mp3\r\n38830791\r\naudio/mpeg\r\na:1:{s:8:\"duration\";s:8:\"00:40:27\";}'),(1542,507,'_su_rich_snippet_type','none'),(1538,507,'_wpas_done_all','1'),(850,10,'_edit_lock','1439048094:1'),(851,10,'_edit_last','1'),(852,10,'_wp_page_template','default'),(857,315,'_wp_attached_file','2015/07/money-timebomb3.jpg'),(858,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2015/07/money-timebomb3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"money-timebomb3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"money-timebomb3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"money-timebomb3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"money-timebomb3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"money-timebomb3-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:27:\"money-timebomb3-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(859,316,'_wp_attached_file','2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB.png'),(860,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:48:\"2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-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:48:\"THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-180x150.png\";s:5:\"width\";i:180;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-150x125.png\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(861,320,'wpsc_order_status','In Progress'),(862,320,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:34:\"TBP Explorers one month membership\";s:5:\"price\";s:0:\"\";s:10:\"price_orig\";s:0:\"\";s:8:\"quantity\";i:1;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:56:\"http://thebeloitpod.com/wordpress1/index.php/products-2/\";s:11:\"item_number\";s:0:\"\";}}'),(863,323,'wpsc_order_status','In Progress'),(864,323,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:34:\"TBP Explorers one month membership\";s:5:\"price\";s:0:\"\";s:10:\"price_orig\";s:0:\"\";s:8:\"quantity\";i:2;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:56:\"http://thebeloitpod.com/wordpress1/index.php/products-2/\";s:11:\"item_number\";s:0:\"\";}}'),(865,324,'wpsc_order_status','In Progress'),(866,324,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:34:\"TBP Explorers one month membership\";s:5:\"price\";s:0:\"\";s:10:\"price_orig\";s:0:\"\";s:8:\"quantity\";i:1;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:56:\"http://thebeloitpod.com/wordpress1/index.php/products-2/\";s:11:\"item_number\";s:0:\"\";}}'),(867,328,'_wp_attached_file','2015/07/FORUMBANNER.png'),(868,328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:760;s:6:\"height\";i:100;s:4:\"file\";s:23:\"2015/07/FORUMBANNER.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"FORUMBANNER-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"FORUMBANNER-300x39.png\";s:5:\"width\";i:300;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"FORUMBANNER-250x33.png\";s:5:\"width\";i:250;s:6:\"height\";i:33;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"FORUMBANNER-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:23:\"FORUMBANNER-600x100.png\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(869,82,'_thumbnail_id','328'),(1144,422,'_um_custom_access_settings','0'),(871,335,'_wp_attached_file','2015/07/THE-BELOIT-PODCASTFORUM.png'),(872,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:35:\"2015/07/THE-BELOIT-PODCASTFORUM.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"THE-BELOIT-PODCASTFORUM-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:35:\"THE-BELOIT-PODCASTFORUM-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"THE-BELOIT-PODCASTFORUM-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"THE-BELOIT-PODCASTFORUM-250x141.png\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"THE-BELOIT-PODCASTFORUM-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:36:\"THE-BELOIT-PODCASTFORUM-1070x200.png\";s:5:\"width\";i:1070;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:35:\"THE-BELOIT-PODCASTFORUM-800x250.png\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:35:\"THE-BELOIT-PODCASTFORUM-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1537,507,'_edit_lock','1441731684:1'),(1536,507,'_edit_last','1'),(1143,422,'_edit_lock','1439782819:1'),(876,341,'_edit_lock','1440892788:1'),(877,341,'_edit_last','1'),(878,341,'_wp_page_template','default'),(879,46,'_oembed_821d3d18d09f124bef5f31601e4868c0','<iframe width=\"600\" height=\"450\" src=\"https://www.youtube.com/embed/CQQJj3rynts?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(880,46,'_oembed_time_821d3d18d09f124bef5f31601e4868c0','1439134536'),(881,344,'_edit_lock','1439143161:1'),(882,344,'_edit_last','1'),(885,347,'_wp_attached_file','2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png'),(886,347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:48:\"2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-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:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-800x200.png\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-800x250.png\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"ngfb-richpin\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"ngfb-pinterest-button\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"ngfb-buffer-button\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"ngfb-tumblr-button\";a:4:{s:4:\"file\";s:48:\"THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(887,344,'_thumbnail_id','347'),(894,350,'_edit_lock','1439325464:1'),(895,350,'_edit_last','1'),(896,350,'_wp_page_template','default'),(897,353,'wpsc_order_status','In Progress'),(898,353,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:34:\"TBP Explorers one month membership\";s:5:\"price\";s:0:\"\";s:10:\"price_orig\";s:0:\"\";s:8:\"quantity\";i:1;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:57:\"http://thebeloitpod.com/wordpress1/index.php/support-tbp/\";s:11:\"item_number\";s:0:\"\";}}'),(899,354,'wpsc_order_status','In Progress'),(900,354,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:30:\"TBP Pioneers annual membership\";s:5:\"price\";s:0:\"\";s:10:\"price_orig\";s:0:\"\";s:8:\"quantity\";i:2;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:57:\"http://thebeloitpod.com/wordpress1/index.php/support-tbp/\";s:11:\"item_number\";s:0:\"\";}}'),(901,357,'wpsc_order_status','In Progress'),(902,357,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:40:\"TBP Explorers monthlm(30 day) membership\";s:5:\"price\";s:4:\"1.00\";s:10:\"price_orig\";s:4:\"1.00\";s:8:\"quantity\";i:1;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:57:\"http://thebeloitpod.com/wordpress1/index.php/support-tbp/\";s:11:\"item_number\";s:0:\"\";}}'),(1580,515,'_um_access_redirect2',''),(1579,515,'_um_accessible','0'),(905,363,'_um_custom_fields','a:6:{s:10:\"user_login\";a:15:{s:5:\"title\";s:8:\"Username\";s:7:\"metakey\";s:10:\"user_login\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:8:\"Username\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:15:\"unique_username\";s:9:\"min_chars\";i:3;s:9:\"max_chars\";i:24;s:8:\"position\";s:1:\"1\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:10:\"user_email\";a:13:{s:5:\"title\";s:14:\"E-mail Address\";s:7:\"metakey\";s:10:\"user_email\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:14:\"E-mail Address\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"validate\";s:12:\"unique_email\";s:8:\"position\";s:1:\"4\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";s:1:\"5\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:10:\"first_name\";a:12:{s:5:\"title\";s:10:\"First Name\";s:7:\"metakey\";s:10:\"first_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"First Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";s:1:\"2\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"last_name\";a:12:{s:5:\"title\";s:9:\"Last Name\";s:7:\"metakey\";s:9:\"last_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Last Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";s:1:\"3\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(906,363,'_um_mode','register'),(907,363,'_um_core','register'),(908,363,'_um_register_use_globals','1'),(909,364,'_um_custom_fields','a:3:{s:8:\"username\";a:13:{s:5:\"title\";s:18:\"Username or E-mail\";s:7:\"metakey\";s:8:\"username\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Username or E-mail\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:24:\"unique_username_or_email\";s:8:\"position\";s:1:\"1\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";s:1:\"2\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(910,364,'_um_mode','login'),(911,364,'_um_core','login'),(912,364,'_um_login_use_globals','1'),(913,365,'_um_custom_fields','a:1:{s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(914,365,'_um_mode','profile'),(915,365,'_um_core','profile'),(916,365,'_um_profile_use_globals','1'),(917,366,'_um_template','members'),(918,366,'_um_mode','directory'),(919,366,'_um_has_profile_photo','0'),(920,366,'_um_has_cover_photo','0'),(921,366,'_um_show_social','0'),(922,366,'_um_show_userinfo','0'),(923,366,'_um_show_tagline','0'),(924,366,'_um_search','0'),(925,366,'_um_userinfo_animate','1'),(926,366,'_um_sortby','user_registered_desc'),(927,366,'_um_profile_photo','1'),(928,366,'_um_cover_photos','1'),(929,366,'_um_show_name','1'),(930,366,'_um_directory_header','{total_users} Members'),(931,366,'_um_directory_header_single','{total_users} Member'),(932,366,'_um_directory_no_users','We are sorry. We cannot find any users who match your search criteria.'),(933,366,'_um_profiles_per_page','12'),(934,366,'_um_profiles_per_page_mobile','6'),(935,366,'_um_core','members'),(993,377,'_um_accessible','0'),(938,367,'_um_core','user'),(992,377,'_um_custom_access_settings','0'),(941,369,'_um_core','login'),(991,377,'_wp_page_template','default'),(944,371,'_um_core','register'),(990,377,'_edit_last','1'),(947,373,'_um_core','members'),(989,377,'_edit_lock','1439160743:1'),(950,375,'_um_core','logout'),(1577,515,'_su_rich_snippet_type','none'),(953,377,'_um_core','account'),(1578,515,'_um_custom_access_settings','0'),(956,379,'_um_core','password-reset'),(957,381,'_um_core','admin'),(958,381,'_um_can_access_wpadmin','1'),(959,381,'_um_can_not_see_adminbar','0'),(960,381,'_um_can_edit_everyone','1'),(961,381,'_um_can_delete_everyone','1'),(962,381,'_um_can_edit_profile','1'),(963,381,'_um_can_delete_profile','1'),(964,381,'_um_can_view_all','1'),(965,381,'_um_can_make_private_profile','1'),(966,381,'_um_can_access_private_profile','1'),(967,381,'_um_default_homepage','1'),(968,381,'_um_status','approved'),(969,381,'_um_auto_approve_act','redirect_profile'),(970,381,'_um_after_login','redirect_admin'),(971,381,'_um_after_logout','redirect_home'),(972,382,'_um_core','member'),(973,382,'_um_can_access_wpadmin','0'),(974,382,'_um_can_not_see_adminbar','1'),(975,382,'_um_can_edit_everyone','0'),(976,382,'_um_can_delete_everyone','0'),(977,382,'_um_can_edit_profile','1'),(978,382,'_um_can_delete_profile','1'),(979,382,'_um_can_view_all','1'),(980,382,'_um_can_make_private_profile','0'),(981,382,'_um_can_access_private_profile','0'),(982,382,'_um_default_homepage','1'),(983,382,'_um_status','approved'),(984,382,'_um_auto_approve_act','redirect_profile'),(985,382,'_um_after_login','redirect_profile'),(986,382,'_um_after_logout','redirect_home'),(994,377,'_um_access_redirect2',''),(995,377,'_um_access_redirect',''),(996,371,'_edit_lock','1439172733:1'),(997,371,'_edit_last','1'),(998,371,'_wp_page_template','default'),(999,371,'_um_custom_access_settings','0'),(1000,371,'_um_accessible','0'),(1001,371,'_um_access_redirect2',''),(1002,371,'_um_access_redirect',''),(1003,369,'_edit_lock','1439160511:1'),(1004,369,'_edit_last','1'),(1005,369,'_wp_page_template','default'),(1006,369,'_um_custom_access_settings','0'),(1007,369,'_um_accessible','0'),(1008,369,'_um_access_redirect2',''),(1009,369,'_um_access_redirect',''),(1010,379,'_edit_lock','1439160573:1'),(1011,379,'_edit_last','1'),(1012,379,'_wp_page_template','default'),(1013,379,'_um_custom_access_settings','0'),(1014,379,'_um_accessible','0'),(1015,379,'_um_access_redirect2',''),(1016,379,'_um_access_redirect',''),(1017,367,'_edit_lock','1439160832:1'),(1018,367,'_edit_last','1'),(1019,367,'_wp_page_template','default'),(1020,367,'_um_custom_access_settings','0'),(1021,367,'_um_accessible','0'),(1022,367,'_um_access_redirect2',''),(1023,367,'_um_access_redirect',''),(1024,373,'_edit_lock','1439175290:1'),(1025,373,'_edit_last','1'),(1026,373,'_wp_page_template','default'),(1027,373,'_um_custom_access_settings','1'),(1028,373,'_um_accessible','2'),(1029,373,'_um_access_redirect2',''),(1030,373,'_um_access_roles','a:2:{i:0;s:6:\"member\";i:1;s:5:\"admin\";}'),(1031,373,'_um_access_redirect','http://thebeloitpod.com/wordpress1/'),(1032,383,'_bbp_forum_id','229'),(1033,383,'_bbp_topic_id','383'),(1034,383,'_bbp_author_ip','76.228.234.21'),(1035,383,'_bbp_last_reply_id','0'),(1036,383,'_bbp_last_active_id','383'),(1037,383,'_bbp_last_active_time','2015-08-11 02:23:21'),(1038,383,'_bbp_reply_count','0'),(1039,383,'_bbp_reply_count_hidden','0'),(1040,383,'_bbp_voice_count','1'),(1041,383,'_bbp_activity_id','4'),(1042,384,'wpsc_order_status','In Progress'),(1043,384,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:40:\"TBP Explorers monthlm(30 day) membership\";s:5:\"price\";s:4:\"1.00\";s:10:\"price_orig\";s:4:\"1.00\";s:8:\"quantity\";i:1;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:57:\"http://thebeloitpod.com/wordpress1/index.php/support-tbp/\";s:11:\"item_number\";s:0:\"\";}}'),(1044,385,'wpsc_order_status','In Progress'),(1045,385,'wpsc_cart_items','a:1:{i:0;a:7:{s:4:\"name\";s:40:\"TBP Explorers monthlm(30 day) membership\";s:5:\"price\";s:4:\"1.00\";s:10:\"price_orig\";s:4:\"1.00\";s:8:\"quantity\";i:1;s:8:\"shipping\";s:1:\"0\";s:8:\"cartLink\";s:57:\"http://thebeloitpod.com/wordpress1/index.php/support-tbp/\";s:11:\"item_number\";s:0:\"\";}}'),(1046,350,'_um_custom_access_settings','0'),(1047,350,'_um_accessible','0'),(1048,350,'_um_access_redirect2',''),(1049,350,'_um_access_redirect',''),(1050,390,'_edit_lock','1439327964:1'),(1051,390,'_edit_last','1'),(1059,393,'_wp_attached_file','2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY.png'),(1054,390,'_wpmem_block','0'),(1055,390,'_um_custom_access_settings','0'),(1056,390,'_um_accessible','0'),(1057,390,'_um_access_redirect2',''),(1058,390,'_um_access_redirect',''),(1060,393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"THE-BELOIT-PODCAST-FORUM-FRIDAY-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:43:\"THE-BELOIT-PODCAST-FORUM-FRIDAY-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:43:\"THE-BELOIT-PODCAST-FORUM-FRIDAY-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"THE-BELOIT-PODCAST-FORUM-FRIDAY-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:43:\"THE-BELOIT-PODCAST-FORUM-FRIDAY-800x200.png\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:43:\"THE-BELOIT-PODCAST-FORUM-FRIDAY-800x250.png\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:43:\"THE-BELOIT-PODCAST-FORUM-FRIDAY-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1065,396,'_edit_lock','1440130181:1'),(1066,396,'_edit_last','1'),(1067,396,'_um_custom_access_settings','0'),(1068,396,'_um_accessible','0'),(1069,396,'_um_access_redirect2',''),(1070,396,'_um_access_redirect',''),(1071,396,'_oembed_962dc696a300ffeee9677f85d1efa5e3','{{unknown}}'),(1072,405,'_wp_attached_file','2015/08/roger1.jpg'),(1073,405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:844;s:4:\"file\";s:18:\"2015/08/roger1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"roger1-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:18:\"roger1-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:18:\"roger1-128x150.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"roger1-128x150.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:18:\"roger1-720x200.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:18:\"roger1-720x250.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:18:\"roger1-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1074,396,'enclosure','http://traffic.libsyn.com/thebeloitpod/rogerburns.mp3\r\n18729812\r\naudio/mpeg\r\na:1:{s:8:\"duration\";s:8:\"00:19:31\";}'),(1077,390,'enclosure','http://traffic.libsyn.com/thebeloitpod/monday8-10-15.mp3\n44020529\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:45:51\";}'),(1081,46,'_wpmem_block','0'),(1080,396,'_wpmem_block','0'),(1082,377,'_wpmem_block','0'),(1083,82,'_wpmem_block','0'),(1084,341,'_wpmem_block','0'),(1085,375,'_wpmem_block','0'),(1086,369,'_wpmem_block','0'),(1087,379,'_wpmem_block','0'),(1088,48,'_wpmem_block','0'),(1089,371,'_wpmem_block','0'),(1090,350,'_wpmem_block','0'),(1091,58,'_wpmem_block','0'),(1092,367,'_wpmem_block','0'),(1093,304,'_wpmem_block','0'),(1094,10,'_wpmem_block','0'),(1095,65,'_wpmem_block','0'),(1096,409,'_edit_last','1'),(1097,409,'_edit_lock','1439430148:1'),(1098,410,'_wp_attached_file','2015/08/lester1.jpg'),(1099,410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:634;s:4:\"file\";s:19:\"2015/08/lester1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"lester1-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:19:\"lester1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"lester1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"lester1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"lester1-634x200.jpg\";s:5:\"width\";i:634;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:19:\"lester1-634x250.jpg\";s:5:\"width\";i:634;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:19:\"lester1-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1119,413,'_um_access_redirect',''),(1102,409,'enclosure','http://traffic.libsyn.com/thebeloitpod/LesterGrace.mp3\n10260289\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:10:41\";}'),(1103,409,'_um_custom_access_settings','0'),(1104,409,'_um_accessible','0'),(1105,409,'_um_access_redirect2',''),(1106,409,'_um_access_redirect',''),(1120,416,'_edit_last','1'),(1123,416,'_um_custom_access_settings','0'),(1124,416,'_um_accessible','0'),(1125,416,'_um_access_redirect2',''),(1126,416,'_um_access_redirect',''),(1127,416,'_edit_lock','1439518039:1'),(1128,418,'_wp_attached_file','2015/07/The-Beloit-Podcast.png'),(1129,418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2015/07/The-Beloit-Podcast.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-800x200.png\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-800x250.png\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"ngfb-richpin\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"ngfb-opengraph\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"ngfb-schema\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"ngfb-pinterest-button\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"ngfb-buffer-button\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"ngfb-tumblr-button\";a:4:{s:4:\"file\";s:30:\"The-Beloit-Podcast-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1130,46,'_um_custom_access_settings','0'),(1131,46,'_um_accessible','0'),(1132,46,'_um_access_redirect2',''),(1133,46,'_um_access_redirect',''),(1134,420,'_edit_last','1'),(1135,420,'_edit_lock','1439729531:1'),(1138,420,'_um_custom_access_settings','0'),(1139,420,'_um_accessible','0'),(1140,420,'_um_access_redirect2',''),(1141,420,'_um_access_redirect',''),(1145,422,'_um_accessible','0'),(1146,422,'_um_access_redirect2',''),(1147,422,'_um_access_redirect',''),(1148,424,'_edit_last','1'),(1149,424,'_edit_lock','1439838944:1'),(1150,424,'_bbp_last_active_time','2015-08-17 19:16:55'),(1151,424,'_bbp_forum_subforum_count','0'),(1152,424,'_bbp_reply_count','0'),(1153,424,'_bbp_total_reply_count','0'),(1154,424,'_bbp_topic_count','1'),(1155,424,'_bbp_total_topic_count','1'),(1156,424,'_bbp_topic_count_hidden','0'),(1157,426,'_bbp_forum_id','424'),(1158,426,'_bbp_topic_id','426'),(1159,426,'_bbp_author_ip','76.228.234.21'),(1160,426,'_bbp_last_reply_id','0'),(1161,426,'_bbp_last_active_id','426'),(1162,426,'_bbp_last_active_time','2015-08-17 19:16:55'),(1163,426,'_bbp_reply_count','0'),(1164,426,'_bbp_reply_count_hidden','0'),(1165,426,'_bbp_voice_count','1'),(1166,424,'_bbp_last_topic_id','426'),(1167,424,'_bbp_last_reply_id','426'),(1168,424,'_bbp_last_active_id','426'),(1169,86,'_bbp_last_topic_id','426'),(1170,86,'_bbp_last_reply_id','426'),(1171,86,'_bbp_last_active_id','426'),(1172,426,'_bbp_activity_id','5'),(1173,366,'_edit_lock','1439846353:1'),(1174,427,'_edit_last','1'),(1175,427,'_edit_lock','1439946632:1'),(1178,427,'_um_custom_access_settings','0'),(1179,427,'_um_accessible','0'),(1180,427,'_um_access_redirect2',''),(1181,427,'_um_access_redirect',''),(1192,427,'_oembed_d389919d9000abb06112a51657e84746','{{unknown}}'),(1193,427,'_oembed_4ac1c231410dddf8055bac1954f96417','{{unknown}}'),(1194,427,'_oembed_d51ac12c793f92f24a20adfe77924b64','{{unknown}}'),(1195,427,'_oembed_4741d5b0fb75e3fb72d01c358c7f2916','{{unknown}}'),(1196,427,'_oembed_a7297541ea4f38427399a45ca24bab5c','{{unknown}}'),(1197,427,'_oembed_a7297541ea4f38427399a45ca24bab5c','{{unknown}}'),(1218,443,'_edit_last','1'),(1212,427,'_thumbnail_id','414'),(1215,427,'_su_rich_snippet_type','none'),(1219,443,'_edit_lock','1440030255:1'),(1220,443,'_su_rich_snippet_type','none'),(1221,443,'_um_custom_access_settings','0'),(1222,443,'_um_accessible','0'),(1223,443,'_um_access_redirect2',''),(1224,443,'_um_access_redirect',''),(1225,341,'_su_rich_snippet_type','none'),(1226,341,'_um_custom_access_settings','0'),(1227,341,'_um_accessible','0'),(1228,341,'_um_access_redirect2',''),(1229,341,'_um_access_redirect',''),(1230,446,'_wp_attached_file','2015/08/JonnaGliztpromo.jpg'),(1231,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:712;s:6:\"height\";i:960;s:4:\"file\";s:27:\"2015/08/JonnaGliztpromo.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"JonnaGliztpromo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"JonnaGliztpromo-223x300.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"JonnaGliztpromo-111x150.jpg\";s:5:\"width\";i:111;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"JonnaGliztpromo-111x150.jpg\";s:5:\"width\";i:111;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"JonnaGliztpromo-712x200.jpg\";s:5:\"width\";i:712;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:27:\"JonnaGliztpromo-712x250.jpg\";s:5:\"width\";i:712;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1232,447,'_wp_attached_file','2015/08/jonnakeytotheothersidePROMO.jpg'),(1233,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:709;s:4:\"file\";s:39:\"2015/08/jonnakeytotheothersidePROMO.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"jonnakeytotheothersidePROMO-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:39:\"jonnakeytotheothersidePROMO-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:39:\"jonnakeytotheothersidePROMO-203x150.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"jonnakeytotheothersidePROMO-150x111.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:39:\"jonnakeytotheothersidePROMO-960x200.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:39:\"jonnakeytotheothersidePROMO-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1238,46,'_oembed_bd31c2720967a0ed64d6ac7cb05a18d0','<iframe width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/CQQJj3rynts?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(1239,46,'_oembed_time_bd31c2720967a0ed64d6ac7cb05a18d0','1440106852'),(1240,451,'_edit_last','1'),(1241,451,'_edit_lock','1440135792:1'),(1242,452,'_wp_attached_file','2015/08/Forum-Friday2.png'),(1243,452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2015/08/Forum-Friday2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Forum-Friday2-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:25:\"Forum-Friday2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"Forum-Friday2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Forum-Friday2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"Forum-Friday2-800x200.png\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"Forum-Friday2-800x250.png\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1255,269,'_wp_attachment_is_custom_background','skt-photo-world'),(1246,451,'_su_rich_snippet_type','none'),(1247,451,'_um_custom_access_settings','0'),(1248,451,'_um_accessible','0'),(1249,451,'_um_access_redirect2',''),(1250,451,'_um_access_redirect',''),(1256,458,'_menu_item_type','custom'),(1257,458,'_menu_item_menu_item_parent','0'),(1258,458,'_menu_item_object_id','458'),(1259,458,'_menu_item_object','custom'),(1260,458,'_menu_item_target',''),(1261,458,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1262,458,'_menu_item_xfn',''),(1263,458,'_menu_item_url','http://thebeloitpod.com/wordpress1/'),(1265,459,'_menu_item_type','post_type'),(1266,459,'_menu_item_menu_item_parent','0'),(1267,459,'_menu_item_object_id','46'),(1268,459,'_menu_item_object','page'),(1269,459,'_menu_item_target',''),(1270,459,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1271,459,'_menu_item_xfn',''),(1272,459,'_menu_item_url',''),(1274,460,'_menu_item_type','post_type'),(1275,460,'_menu_item_menu_item_parent','464'),(1276,460,'_menu_item_object_id','377'),(1277,460,'_menu_item_object','page'),(1278,460,'_menu_item_target',''),(1279,460,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1280,460,'_menu_item_xfn',''),(1281,460,'_menu_item_url',''),(1283,461,'_menu_item_type','post_type'),(1284,461,'_menu_item_menu_item_parent','0'),(1285,461,'_menu_item_object_id','82'),(1286,461,'_menu_item_object','page'),(1287,461,'_menu_item_target',''),(1288,461,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1289,461,'_menu_item_xfn',''),(1290,461,'_menu_item_url',''),(1292,462,'_menu_item_type','post_type'),(1293,462,'_menu_item_menu_item_parent','0'),(1294,462,'_menu_item_object_id','341'),(1295,462,'_menu_item_object','page'),(1296,462,'_menu_item_target',''),(1297,462,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1298,462,'_menu_item_xfn',''),(1299,462,'_menu_item_url',''),(1301,463,'_menu_item_type','post_type'),(1302,463,'_menu_item_menu_item_parent','464'),(1303,463,'_menu_item_object_id','375'),(1304,463,'_menu_item_object','page'),(1305,463,'_menu_item_target',''),(1306,463,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1307,463,'_menu_item_xfn',''),(1308,463,'_menu_item_url',''),(1310,464,'_menu_item_type','post_type'),(1311,464,'_menu_item_menu_item_parent','0'),(1312,464,'_menu_item_object_id','373'),(1313,464,'_menu_item_object','page'),(1314,464,'_menu_item_target',''),(1315,464,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1316,464,'_menu_item_xfn',''),(1317,464,'_menu_item_url',''),(1319,465,'_menu_item_type','post_type'),(1320,465,'_menu_item_menu_item_parent','464'),(1321,465,'_menu_item_object_id','369'),(1322,465,'_menu_item_object','page'),(1323,465,'_menu_item_target',''),(1324,465,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1325,465,'_menu_item_xfn',''),(1326,465,'_menu_item_url',''),(1328,466,'_menu_item_type','post_type'),(1329,466,'_menu_item_menu_item_parent','464'),(1330,466,'_menu_item_object_id','379'),(1331,466,'_menu_item_object','page'),(1332,466,'_menu_item_target',''),(1333,466,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1334,466,'_menu_item_xfn',''),(1335,466,'_menu_item_url',''),(1337,467,'_menu_item_type','post_type'),(1338,467,'_menu_item_menu_item_parent','0'),(1339,467,'_menu_item_object_id','48'),(1340,467,'_menu_item_object','page'),(1341,467,'_menu_item_target',''),(1342,467,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1343,467,'_menu_item_xfn',''),(1344,467,'_menu_item_url',''),(1346,468,'_menu_item_type','post_type'),(1347,468,'_menu_item_menu_item_parent','0'),(1348,468,'_menu_item_object_id','350'),(1349,468,'_menu_item_object','page'),(1350,468,'_menu_item_target',''),(1351,468,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1352,468,'_menu_item_xfn',''),(1353,468,'_menu_item_url',''),(1392,473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1439;s:6:\"height\";i:871;s:4:\"file\";s:33:\"2015/08/free_twitter_designer.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"free_twitter_designer-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:33:\"free_twitter_designer-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"free_twitter_designer-1024x620.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1355,469,'_menu_item_type','post_type'),(1356,469,'_menu_item_menu_item_parent','0'),(1357,469,'_menu_item_object_id','58'),(1358,469,'_menu_item_object','page'),(1359,469,'_menu_item_target',''),(1360,469,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1361,469,'_menu_item_xfn',''),(1362,469,'_menu_item_url',''),(1364,470,'_menu_item_type','post_type'),(1365,470,'_menu_item_menu_item_parent','464'),(1366,470,'_menu_item_object_id','367'),(1367,470,'_menu_item_object','page'),(1368,470,'_menu_item_target',''),(1369,470,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1370,470,'_menu_item_xfn',''),(1371,470,'_menu_item_url',''),(1373,471,'_menu_item_type','post_type'),(1374,471,'_menu_item_menu_item_parent','0'),(1375,471,'_menu_item_object_id','10'),(1376,471,'_menu_item_object','page'),(1377,471,'_menu_item_target',''),(1378,471,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1379,471,'_menu_item_xfn',''),(1380,471,'_menu_item_url',''),(1391,473,'_wp_attached_file','2015/08/free_twitter_designer.jpg'),(1382,472,'_menu_item_type','post_type'),(1383,472,'_menu_item_menu_item_parent','464'),(1384,472,'_menu_item_object_id','65'),(1385,472,'_menu_item_object','page'),(1386,472,'_menu_item_target',''),(1387,472,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1388,472,'_menu_item_xfn',''),(1389,472,'_menu_item_url',''),(1393,473,'_wp_attachment_is_custom_background','selma'),(1394,474,'gce_expand_recurring','1'),(1395,474,'gce_retrieve_from','today'),(1396,474,'gce_retrieve_until','end_time'),(1397,474,'gce_cache','43200'),(1398,474,'gce_paging','1'),(1399,474,'gce_list_start_offset_num','0'),(1400,474,'gce_feed_end_num','2'),(1401,474,'gce_feed_start_num','1'),(1402,474,'gce_feed_end','years'),(1403,474,'gce_feed_start','months'),(1404,474,'gce_show_tooltips','1'),(1405,474,'gce_display_start','time'),(1406,474,'gce_display_start_text','Starts:'),(1407,474,'gce_display_end','time-date'),(1408,474,'gce_display_end_text','Ends:'),(1409,474,'gce_display_separator',','),(1410,474,'gce_display_location_text','Location:'),(1411,474,'gce_display_description_text','Description:'),(1412,474,'gce_display_link','1'),(1413,474,'gce_display_link_text','More Details'),(1414,474,'_edit_last','1'),(1415,474,'_su_rich_snippet_type','none'),(1416,474,'gce_feed_url',''),(1417,474,'gce_date_format',''),(1418,474,'gce_time_format',''),(1419,474,'gce_display_mode','grid'),(1420,474,'gce_search_query',''),(1421,474,'gce_events_per_page','days'),(1422,474,'gce_per_page_num','7'),(1423,474,'gce_list_start_offset_direction','back'),(1424,474,'gce_feed_range_start',''),(1425,474,'gce_feed_range_end',''),(1426,474,'_feed_timezone_setting','use_calendar'),(1427,474,'gce_display_description_max',''),(1428,474,'_um_custom_access_settings','0'),(1429,474,'_um_accessible','0'),(1430,474,'_um_access_redirect2',''),(1431,474,'_um_access_redirect',''),(1432,474,'_edit_lock','1440285538:1'),(1433,46,'_oembed_e4c45b65a7083f95766bfd4b75f430d9','<iframe width=\"640\" height=\"480\" src=\"https://www.youtube.com/embed/CQQJj3rynts?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(1434,46,'_oembed_time_e4c45b65a7083f95766bfd4b75f430d9','1440292646'),(1435,475,'_wp_attached_file','2015/07/The-Beloit-Podcast-Forum.jpg'),(1436,475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:728;s:6:\"height\";i:90;s:4:\"file\";s:36:\"2015/07/The-Beloit-Podcast-Forum.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"The-Beloit-Podcast-Forum-150x90.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"The-Beloit-Podcast-Forum-300x37.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:37;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1437,82,'_su_rich_snippet_type','none'),(1438,82,'_um_custom_access_settings','0'),(1439,82,'_um_accessible','0'),(1440,82,'_um_access_redirect2',''),(1441,82,'_um_access_redirect',''),(1442,141,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1440405836;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:127;}i:1;a:1:{s:2:\"id\";i:396;}i:2;a:1:{s:2:\"id\";i:111;}}}}'),(1443,477,'_edit_last','1'),(1444,477,'_edit_lock','1440447232:1'),(1445,478,'_wp_attached_file','2015/08/mondayLIVE.jpg'),(1446,478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2015/08/mondayLIVE.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"mondayLIVE-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:22:\"mondayLIVE-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1447,477,'_su_rich_snippet_type','none'),(1448,477,'_um_custom_access_settings','0'),(1449,477,'_um_accessible','0'),(1450,477,'_um_access_redirect2',''),(1451,477,'_um_access_redirect',''),(1452,477,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1441879874;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:420;}i:1;a:1:{s:2:\"id\";i:390;}i:2;a:1:{s:2:\"id\";i:252;}}}}'),(1453,477,'_wpas_done_all','1'),(1456,451,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1441952709;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:390;}i:1;a:1:{s:2:\"id\";i:416;}i:2;a:1:{s:2:\"id\";i:420;}}}}'),(1457,481,'_edit_last','1'),(1458,481,'_edit_lock','1440446604:1'),(1459,482,'_wp_attached_file','2015/08/ReeseBDN.jpg'),(1460,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:760;s:6:\"height\";i:507;s:4:\"file\";s:20:\"2015/08/ReeseBDN.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ReeseBDN-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"ReeseBDN-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1461,481,'_wpas_done_all','1'),(1464,481,'enclosure','http://traffic.libsyn.com/thebeloitpod/BDNinterview.mp3\n37206143\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:38:45\";}'),(1465,481,'_su_rich_snippet_type','none'),(1466,481,'_um_custom_access_settings','0'),(1467,481,'_um_accessible','0'),(1468,481,'_um_access_redirect2',''),(1469,481,'_um_access_redirect',''),(1473,481,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1442220475;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:127;}i:1;a:1:{s:2:\"id\";i:173;}i:2;a:1:{s:2:\"id\";i:155;}}}}'),(1472,477,'enclosure','http://traffic.libsyn.com/thebeloitpod/MML1.mp3\n35716527\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:37:12\";}'),(1474,244,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1440523201;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:127;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:161;}}}}'),(1475,396,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1442207243;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:167;}i:1;a:1:{s:2:\"id\";i:161;}i:2;a:1:{s:2:\"id\";i:173;}}}}'),(1546,507,'_um_access_redirect',''),(1535,474,'_jetpack_related_posts_cache','a:0:{}'),(1551,507,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444324437;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:495;}i:1;a:1:{s:2:\"id\";i:515;}i:2;a:1:{s:2:\"id\";i:517;}}}}'),(1583,517,'_edit_last','1'),(1584,517,'_edit_lock','1441982787:1'),(1585,517,'_wpas_done_all','1'),(1588,517,'enclosure','http://traffic.libsyn.com/thebeloitpod/WADRmornings9-11-15.mp3\n56891229\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:59:16\";}'),(1589,517,'_su_rich_snippet_type','none'),(1590,517,'_um_custom_access_settings','0'),(1591,517,'_um_accessible','0'),(1592,517,'_um_access_redirect2',''),(1593,517,'_um_access_redirect',''),(1594,520,'_edit_last','1'),(1595,520,'_edit_lock','1441996278:1'),(1596,521,'_wp_attached_file','2015/09/Kyle-Weaver.jpg'),(1597,521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:324;s:4:\"file\";s:23:\"2015/09/Kyle-Weaver.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Kyle-Weaver-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:23:\"Kyle-Weaver-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1598,520,'_wpas_done_all','1'),(1601,520,'enclosure','http://traffic.libsyn.com/thebeloitpod/kyleweaver.mp3\n17467157\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:18:12\";}'),(1602,520,'_su_rich_snippet_type','none'),(1603,520,'_um_custom_access_settings','0'),(1604,520,'_um_accessible','0'),(1605,520,'_um_access_redirect2',''),(1606,520,'_um_access_redirect',''),(1607,520,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444202535;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:511;}i:1;a:1:{s:2:\"id\";i:94;}i:2;a:1:{s:2:\"id\";i:152;}}}}'),(1608,517,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444227859;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:515;}i:1;a:1:{s:2:\"id\";i:495;}i:2;a:1:{s:2:\"id\";i:507;}}}}'),(1609,195,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1442467058;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:127;}i:1;a:1:{s:2:\"id\";i:409;}i:2;a:1:{s:2:\"id\";i:138;}}}}'),(1610,344,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1443620430;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:420;}i:1;a:1:{s:2:\"id\";i:477;}i:2;a:1:{s:2:\"id\";i:390;}}}}'),(1611,179,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1443669186;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:182;}i:1;a:1:{s:2:\"id\";i:158;}i:2;a:1:{s:2:\"id\";i:176;}}}}'),(1612,76,'_jetpack_related_posts_cache','a:1:{s:32:\"814d76ec02c40abc2456346584cd2203\";a:2:{s:7:\"expires\";i:1443732479;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:238;}i:1;a:1:{s:2:\"id\";i:234;}i:2;a:1:{s:2:\"id\";i:229;}}}}'),(1613,416,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444032334;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:390;}i:1;a:1:{s:2:\"id\";i:451;}i:2;a:1:{s:2:\"id\";i:420;}}}}'),(1614,216,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444048621;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:242;}i:1;a:1:{s:2:\"id\";i:184;}i:2;a:1:{s:2:\"id\";i:252;}}}}'),(1615,231,'_jetpack_related_posts_cache','a:1:{s:32:\"814d76ec02c40abc2456346584cd2203\";a:2:{s:7:\"expires\";i:1444068278;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:424;}i:1;a:1:{s:2:\"id\";i:234;}i:2;a:1:{s:2:\"id\";i:86;}}}}'),(1616,138,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444110791;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:443;}i:1;a:1:{s:2:\"id\";i:184;}i:2;a:1:{s:2:\"id\";i:127;}}}}'),(1617,124,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444137256;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:127;}i:1;a:1:{s:2:\"id\";i:167;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(1618,242,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444245549;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:184;}i:1;a:1:{s:2:\"id\";i:216;}i:2;a:1:{s:2:\"id\";i:148;}}}}'),(1619,523,'_edit_last','1'),(1620,523,'_edit_lock','1444153098:1'),(1621,523,'_wpas_done_all','1'),(1630,523,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444200866;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:507;}i:1;a:1:{s:2:\"id\";i:517;}i:2;a:1:{s:2:\"id\";i:515;}}}}'),(1624,523,'enclosure','http://traffic.libsyn.com/thebeloitpod/ediebaron.mp3\n51458210\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"00:53:36\";}'),(1625,523,'_su_rich_snippet_type','none'),(1626,523,'_um_custom_access_settings','0'),(1627,523,'_um_accessible','0'),(1628,523,'_um_access_redirect2',''),(1629,523,'_um_access_redirect',''),(1631,116,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444218807;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:152;}i:1;a:1:{s:2:\"id\";i:138;}i:2;a:1:{s:2:\"id\";i:173;}}}}'),(1632,192,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444247182;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:94;}i:1;a:1:{s:2:\"id\";i:409;}i:2;a:1:{s:2:\"id\";i:158;}}}}'),(1633,74,'_jetpack_related_posts_cache','a:1:{s:32:\"814d76ec02c40abc2456346584cd2203\";a:2:{s:7:\"expires\";i:1444254259;s:7:\"payload\";a:2:{i:0;a:1:{s:2:\"id\";i:231;}i:1;a:1:{s:2:\"id\";i:424;}}}}'),(1634,148,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444277971;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:182;}i:1;a:1:{s:2:\"id\";i:116;}i:2;a:1:{s:2:\"id\";i:158;}}}}'),(1635,526,'_edit_last','1'),(1636,526,'_edit_lock','1444241605:1'),(1637,526,'_wpas_done_all','1'),(1646,84,'_jetpack_related_posts_cache','a:1:{s:32:\"814d76ec02c40abc2456346584cd2203\";a:2:{s:7:\"expires\";i:1444302292;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:234;}i:1;a:1:{s:2:\"id\";i:238;}i:2;a:1:{s:2:\"id\";i:86;}}}}'),(1640,526,'enclosure','http://traffic.libsyn.com/thebeloitpod/BrianDuckwitz.mp3\n61723714\naudio/mpeg\na:1:{s:8:\"duration\";s:8:\"01:04:18\";}'),(1641,526,'_su_rich_snippet_type','none'),(1642,526,'_um_custom_access_settings','0'),(1643,526,'_um_accessible','0'),(1644,526,'_um_access_redirect2',''),(1645,526,'_um_access_redirect',''),(1647,526,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444302513;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:507;}i:1;a:1:{s:2:\"id\";i:515;}i:2;a:1:{s:2:\"id\";i:517;}}}}'),(1648,136,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444317331;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:119;}i:1;a:1:{s:2:\"id\";i:390;}i:2;a:1:{s:2:\"id\";i:155;}}}}'),(1649,238,'_jetpack_related_posts_cache','a:1:{s:32:\"814d76ec02c40abc2456346584cd2203\";a:2:{s:7:\"expires\";i:1444342988;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:234;}i:1;a:1:{s:2:\"id\";i:84;}i:2;a:1:{s:2:\"id\";i:86;}}}}'),(1650,119,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444347253;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:136;}i:1;a:1:{s:2:\"id\";i:155;}i:2;a:1:{s:2:\"id\";i:161;}}}}'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_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=MyISAM AUTO_INCREMENT=528 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (4,1,'2015-07-26 11:25:02','2015-07-26 11:25:02','','thebeloitpodcastbanner','','inherit','open','open','','thebeloitpodcastbanner','','','2015-07-26 11:25:02','2015-07-26 11:25:02','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner.jpg',0,'attachment','image/jpeg',0),(5,1,'2015-07-26 11:41:09','2015-07-26 11:41:09','','20150724_113010_20150724115010732','Host-Reese Wood','inherit','open','open','','20150724_113010_20150724115010732','','','2015-07-30 15:06:19','2015-07-30 15:06:19','',46,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732.jpg',0,'attachment','image/jpeg',0),(6,1,'2015-07-26 11:41:18','2015-07-26 11:41:18','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-20150724_113010_20150724115010732.jpg','cropped-20150724_113010_20150724115010732.jpg','','inherit','open','open','','cropped-20150724_113010_20150724115010732-jpg','','','2015-07-26 11:41:18','2015-07-26 11:41:18','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-20150724_113010_20150724115010732.jpg',0,'attachment','image/jpeg',0),(7,1,'2015-07-26 14:07:05','2015-07-26 14:07:05','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-thebeloitpodcastbanner.jpg','cropped-thebeloitpodcastbanner.jpg','','inherit','open','open','','cropped-thebeloitpodcastbanner-jpg','','','2015-07-26 14:07:05','2015-07-26 14:07:05','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-thebeloitpodcastbanner.jpg',0,'attachment','image/jpeg',0),(8,1,'2015-07-26 14:10:26','2015-07-26 14:10:26','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-thebeloitpodcastbanner1.jpg','cropped-thebeloitpodcastbanner1.jpg','','inherit','open','open','','cropped-thebeloitpodcastbanner1-jpg','','','2015-07-26 14:10:26','2015-07-26 14:10:26','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-thebeloitpodcastbanner1.jpg',0,'attachment','image/jpeg',0),(9,1,'2015-07-26 14:15:46','2015-07-26 14:15:46','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-thebeloitpodcastbanner2.jpg','cropped-thebeloitpodcastbanner2.jpg','','inherit','open','open','','cropped-thebeloitpodcastbanner2-jpg','','','2015-07-26 14:15:46','2015-07-26 14:15:46','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-thebeloitpodcastbanner2.jpg',0,'attachment','image/jpeg',0),(10,1,'2015-07-26 14:26:59','2015-07-26 14:26:59','','Activity','','publish','closed','closed','','activity','','','2015-08-08 15:36:20','2015-08-08 15:36:20','',0,'http://thebeloitpod.com/wordpress1wordpress1/index.php/activity/',8,'page','',0),(487,1,'2015-08-28 23:25:31','2015-08-28 23:25:31','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/WADR-logo-e1428883764958.jpg\"><img class=\"aligncenter size-medium wp-image-486\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/WADR-logo-e1428883764958-300x300.jpg\" alt=\"WADR-logo-e1428883764958\" width=\"300\" height=\"300\" /></a>Major Announcement! Beginning Monday morning I will be live on 103.5 WADR Janesville Community Radio from 7AM-8AM. If you are outside of the Janesville area just go to<a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fjanesvillecommunityradio.com%2Flisten-live%2F&h=vAQF4zuUnAQFuw1pJ_eRgKVgPfBmC1AyBQCjmdRpjMJp4Vg&enc=AZPe1zUoonwiPxuPwP0e-Z2hU5iioe_F2Ckt5i6fpfyqxdtlDn8HzeoF6P-IgQj1ZUded6Hug5suQ6OFgtNww5O1VMOiUjlMA5aeCsIRy2t896_EQtcXrZqhWLklzQ5SZ2xeo-npcj2-yh12Fz12OHdQIFokXDcNQ5MbbTT_mploVQ&s=1\" target=\"_blank\" rel=\"nofollow\">janesvillecommunityradio.com/listen-live/</a>. Thanks to everyone at WADR for the opportunity.\r\n\r\nWADR currently has many great programs:\r\n\r\nArtSpark With Eddy Baran\r\n\r\nBeloit Snappers Baseball\r\n\r\nBFunny Sundays\r\n\r\nChrist in the City\r\n\r\nMindful Mondays\r\n\r\nOMP Radio\r\n\r\nDemocracy Now\r\n\r\nAnd more...\r\n\r\nIf you would like to volunteer you can do so by visiting <a href=\"http://janesvillecommunityradio.com/volunteer/\" target=\"_blank\">janesvillecommunityradio.com/volunteer</a>','','','inherit','open','open','','485-revision-v1','','','2015-08-28 23:25:31','2015-08-28 23:25:31','',485,'http://thebeloitpod.com/wordpress1/index.php/2015/08/28/485-revision-v1/',0,'revision','',0),(18,1,'2015-07-26 14:50:46','0000-00-00 00:00:00','','Home','','draft','open','open','','','','','2015-07-26 14:50:46','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1wordpress1/?p=18',1,'nav_menu_item','',0),(19,1,'2015-07-26 14:50:46','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2015-07-26 14:50:46','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1wordpress1/?p=19',1,'nav_menu_item','',0),(24,1,'2015-07-26 14:51:12','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2015-07-26 14:51:12','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1wordpress1/?p=24',1,'nav_menu_item','',0),(25,1,'2015-07-26 19:09:33','0000-00-00 00:00:00','','Home','','draft','open','open','','','','','2015-07-26 19:09:33','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1wordpress1/?p=25',1,'nav_menu_item','',0),(26,1,'2015-07-26 19:09:33','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2015-07-26 19:09:33','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1wordpress1/?p=26',1,'nav_menu_item','',0),(29,1,'2015-07-26 19:18:33','2015-07-26 19:18:33','','thebeloitpodcastbanner','','inherit','open','open','','thebeloitpodcastbanner-2','','','2015-07-26 19:18:33','2015-07-26 19:18:33','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner1.jpg',0,'attachment','image/jpeg',0),(30,1,'2015-07-26 19:19:01','2015-07-26 19:19:01','','thebeloitpodB&Wlogo','','inherit','open','open','','thebeloitpodbwlogo','','','2015-07-26 19:19:01','2015-07-26 19:19:01','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/thebeloitpodBWlogo.jpg',0,'attachment','image/jpeg',0),(31,1,'2015-07-26 19:34:47','2015-07-26 19:34:47','','thebeloitpodcastbanner2','','inherit','open','open','','thebeloitpodcastbanner2','','','2015-07-26 19:34:47','2015-07-26 19:34:47','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner2.jpg',0,'attachment','image/jpeg',0),(32,1,'2015-07-26 19:35:27','2015-07-26 19:35:27','','thebeloitpodB&Wlogo2','','inherit','open','open','','thebeloitpodbwlogo2','','','2015-07-26 19:35:27','2015-07-26 19:35:27','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/thebeloitpodBWlogo2.jpg',0,'attachment','image/jpeg',0),(33,1,'2015-07-26 19:35:56','2015-07-26 19:35:56','','11539031_893770364026665_3718935239763080284_o2','','inherit','open','open','','11539031_893770364026665_3718935239763080284_o2','','','2015-07-26 19:35:56','2015-07-26 19:35:56','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/11539031_893770364026665_3718935239763080284_o2.jpg',0,'attachment','image/jpeg',0),(34,1,'2015-07-26 21:01:18','2015-07-26 21:01:18','','WP_20150711_035','','inherit','open','open','','wp_20150711_035','','','2015-07-26 21:01:18','2015-07-26 21:01:18','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/WP_20150711_035.jpg',0,'attachment','image/jpeg',0),(35,1,'2015-07-26 21:21:23','0000-00-00 00:00:00','','Home','','draft','open','open','','','','','2015-07-26 21:21:23','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1wordpress1/?p=35',1,'nav_menu_item','',0),(36,1,'2015-07-26 21:21:23','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2015-07-26 21:21:23','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1wordpress1/?p=36',1,'nav_menu_item','',0),(39,1,'2015-07-26 21:21:39','0000-00-00 00:00:00','','Home','','draft','open','open','','','','','2015-07-26 21:21:39','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1wordpress1/?p=39',1,'nav_menu_item','',0),(40,1,'2015-07-26 21:21:39','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2015-07-26 21:21:39','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1wordpress1/?p=40',1,'nav_menu_item','',0),(43,1,'2015-07-26 21:53:51','2015-07-26 21:53:51','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner2.jpg','cropped-cropped-thebeloitpodcastbanner2.jpg','','inherit','open','open','','cropped-cropped-thebeloitpodcastbanner2-jpg','','','2015-07-26 21:53:51','2015-07-26 21:53:51','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner2.jpg',0,'attachment','image/jpeg',0),(44,1,'2015-07-26 22:00:12','2015-07-26 22:00:12','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner21.jpg','thebeloitpodcastbanner21.jpg','','inherit','open','open','','thebeloitpodcastbanner21-jpg','','','2015-07-26 22:00:12','2015-07-26 22:00:12','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner21.jpg',0,'attachment','image/jpeg',0),(45,1,'2015-07-26 22:46:20','2015-07-26 22:46:20','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner22.jpg','thebeloitpodcastbanner22.jpg','','inherit','open','open','','thebeloitpodcastbanner22-jpg','','','2015-07-26 22:46:20','2015-07-26 22:46:20','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner22.jpg',0,'attachment','image/jpeg',0),(46,1,'2015-07-27 00:11:43','2015-07-27 00:11:43','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast.png\"><img class=\" size-medium wp-image-418 alignleft\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast-300x300.png\" alt=\"The Beloit Podcast\" width=\"300\" height=\"300\" data-wp-pid=\"418\" /></a>\r\nThe Beloit Podcast is an education and communications based audio show. Five days a week host Reese Wood will bring information about the Beloit area, its people and places; past, present, and future. Anything relevant to our city, its geographic location, its people, history, business, etc. You will be surprised at the many ways The Beloit Podcast will highlight Beloit as the pivot point with each daily episode. Expect to hear anything ranging from interviews, Call-in episodes, stories, business, economy, current events, local events, music features, lectures, and readings. Each day will be a new and different topic to look forward to!\r\n\r\n[embed]https://www.youtube.com/watch?v=CQQJj3rynts[/embed]','About','','publish','open','open','','about','','','2015-08-16 11:46:29','2015-08-16 11:46:29','',0,'http://thebeloitpod.com/wordpress1wordpress1/?page_id=46',0,'page','',0),(47,1,'2015-07-27 00:11:43','2015-07-27 00:11:43',' \r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732.jpg\"><img class=\" wp-image-5 alignnone\" src=\"http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732-222x300.jpg\" alt=\"20150724_113010_20150724115010732\" width=\"172\" height=\"232\" /> </a>The Beloit Podcast is an education and communications based audio show. Five days a week host Reese Wood will bring a information about the Beloit area, its people and places; past, present, and future. Anything relevant to our city, its geographic location, its people, history, business, etc. You will be surprised at the many ways The Beloit podcast will highlight Beloit as the pivot point of each daily episode. Expect to hear anything from interviews, stories, business, economy, current events, local events, music features, lectures, and readings. Each day a new and different topic to look forward to!\r\n\r\n[embed]https://www.youtube.com/watch?v=CQQJj3rynts[/embed]','About','','inherit','open','open','','46-revision-v1','','','2015-07-27 00:11:43','2015-07-27 00:11:43','',46,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/46-revision-v1/',0,'revision','',0),(48,1,'2015-07-27 00:33:30','2015-07-27 00:33:30','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB.png\"><img class=\"aligncenter size-medium wp-image-316\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-300x250.png\" alt=\"THE BELOIT PODCAST MONTHLY MONEYBOMB\" width=\"300\" height=\"250\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/money-timebomb3.jpg\">\r\n</a>Donations/Subscriptions/& The Money Bomb- This is where you can enter the monthly money-bomb! You can donate or become a paid member by contacting me through this form. Once you have made your donation/purchase of membership you will have access to bonus content and exclusive incentives.Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Just fill out the form below, send me all the details you would like to work out and we\'ll see what we can do! Thanks for supporting TBP and our community!\r\n\r\n[si-contact-form form=\'1\']','Money Bomb','','publish','open','open','','money-bomb','','','2015-08-08 20:51:41','2015-08-08 20:51:41','',0,'http://thebeloitpod.com/wordpress1wordpress1/?page_id=48',0,'page','',0),(49,1,'2015-07-27 00:33:30','2015-07-27 00:33:30','<http://0007b1d.rcomhost.com/moneybomb.html>','Money Bomb','','inherit','open','open','','48-revision-v1','','','2015-07-27 00:33:30','2015-07-27 00:33:30','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-revision-v1/',0,'revision','',0),(50,1,'2015-07-27 00:35:27','2015-07-27 00:35:27','http://0007b1d.rcomhost.com/moneybomb.html','Money Bomb','','inherit','open','open','','48-revision-v1','','','2015-07-27 00:35:27','2015-07-27 00:35:27','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-revision-v1/',0,'revision','',0),(51,1,'2015-07-27 01:51:23','2015-07-27 01:51:23','\r\n[xyz-ihs snippet=\"Money-Bomb\"]','Money Bomb','','inherit','open','open','','48-revision-v1','','','2015-07-27 01:51:23','2015-07-27 01:51:23','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-revision-v1/',0,'revision','',0),(52,1,'2015-08-08 20:51:12','2015-08-08 20:51:12','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB.png\"><img class=\"aligncenter size-medium wp-image-316\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-300x250.png\" alt=\"THE BELOIT PODCAST MONTHLY MONEYBOMB\" width=\"300\" height=\"250\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/money-timebomb3.jpg\">\n</a>Donations/Subscriptions/& The Money Bomb- This is where you can enter the monthly money-bomb! You can donate or become a paid member by contacting me through this form. Once you have made your donation/purchase of membership you will have access to bonus content and exclusive incentives.Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Just fill out the form below, send me all the details you wThanks for supporting TBP and our community!\n\n[si-contact-form form=\'1\']','Money Bomb','','inherit','open','open','','48-autosave-v1','','','2015-08-08 20:51:12','2015-08-08 20:51:12','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-autosave-v1/',0,'revision','',0),(53,1,'2015-07-27 11:34:28','2015-07-27 11:34:28','[si-contact-form form=\'1\']','Money Bomb','','inherit','open','open','','48-revision-v1','','','2015-07-27 11:34:28','2015-07-27 11:34:28','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-revision-v1/',0,'revision','',0),(54,1,'2015-07-27 11:36:06','2015-07-27 11:36:06','This is where you can enter the monthly money-bomb! You can donate or sign up to be a member at a price that I am willing to negotiate. Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. You can donate or become a paid member by contacting me through this form. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Thanks for supporting TBP and our community!\r\n[si-contact-form form=\'1\']','Money Bomb','','inherit','open','open','','48-revision-v1','','','2015-07-27 11:36:06','2015-07-27 11:36:06','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-revision-v1/',0,'revision','',0),(55,1,'2015-07-27 11:38:07','2015-07-27 11:38:07','This is where you can enter the monthly money-bomb! You can donate or sign up to be a member at a price that I am willing to negotiate.You can donate or become a paid member by contacting me through this form. Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Thanks for supporting TBP and our community!\r\n[si-contact-form form=\'1\']','Money Bomb','','inherit','open','open','','48-revision-v1','','','2015-07-27 11:38:07','2015-07-27 11:38:07','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-revision-v1/',0,'revision','',0),(56,1,'2015-07-27 11:40:28','2015-07-27 11:40:28','Donations/Subscriptions/& The Money Bomb- This is where you can enter the monthly money-bomb! You can donate or sign up to be a member at a price that I am willing to negotiate.You can donate or become a paid member by contacting me through this form. Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Thanks for supporting TBP and our community!\r\n[si-contact-form form=\'1\']','Money Bomb','','inherit','open','open','','48-revision-v1','','','2015-07-27 11:40:28','2015-07-27 11:40:28','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-revision-v1/',0,'revision','',0),(57,1,'2015-07-27 11:42:22','2015-07-27 11:42:22','Donations/Subscriptions/& The Money Bomb- This is where you can enter the monthly money-bomb! You can donate or sign up to be a member at a price that I am willing to negotiate.You can donate or become a paid member by contacting me through this form. Once you have made your donation/purchase of membership you will have access to bonus content and extra incentives.Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Thanks for supporting TBP and our community!\r\n[si-contact-form form=\'1\']','Money Bomb','','inherit','open','open','','48-revision-v1','','','2015-07-27 11:42:22','2015-07-27 11:42:22','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-revision-v1/',0,'revision','',0),(58,1,'2015-07-27 15:30:25','2015-07-27 15:30:25','<p style=\"text-align: left;\">Are you familiar with Wikepedia? At TBP we will have our own wiki for all things relevant to TBP, Beloit, and our community. If you would like to see information added or corrected please take it upon yourself to contribute. You are responsible for choosing the role you play in this wiki, if you would like to contribute please do! A few examples are if you see a typo, we encourage and need you to fix it. If you think a sentence is oddly worded and can make it better, do it. If you\'ve never edited a wiki we\'re here to lend a helping hand, join the TBP members/group and you will get the help you need.</p>\r\n\r\n\r\n[caption id=\"attachment_205\" align=\"aligncenter\" width=\"1000\"]<a href=\"http://thebeloitpod.com/mediawiki1/index.php?title=Main_Page\"><img class=\"size-full wp-image-205\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastWIKIbanner.jpg\" alt=\"Click image to enter Wiki\" width=\"1000\" height=\"562\" /></a> Click image to enter Wiki[/caption]','TBP Wiki','','publish','open','open','','tbp-wiki','','','2015-08-02 01:46:18','2015-08-02 01:46:18','',0,'http://thebeloitpod.com/wordpress1wordpress1/?page_id=58',0,'page','',0),(59,1,'2015-07-27 12:13:01','2015-07-27 12:13:01','Donations/Subscriptions/& The Money Bomb- This is where you can enter the monthly money-bomb! You can donate or sign up to be a member at a price that I am willing to negotiate.You can donate or become a paid member by contacting me through this form. Once you have made your donation/purchase of membership you will have access to bonus content and exclusive incentives.Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Thanks for supporting TBP and our community!\r\n[si-contact-form form=\'1\']','Money Bomb','','inherit','closed','open','','48-revision-v1','','','2015-07-27 12:13:01','2015-07-27 12:13:01','',48,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/48-revision-v1/',0,'revision','',0),(65,1,'2015-07-27 14:53:31','2015-07-27 14:53:31','','Activate Membership','','publish','closed','open','','activate-membership','','','2015-07-27 14:53:31','2015-07-27 14:53:31','',0,'http://thebeloitpod.com/wordpress1wordpress1/?page_id=65',0,'page','',0),(66,1,'2015-07-27 14:53:31','2015-07-27 14:53:31','','Activate Membership','','inherit','closed','open','','65-revision-v1','','','2015-07-27 14:53:31','2015-07-27 14:53:31','',65,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/65-revision-v1/',0,'revision','',0),(67,1,'2015-07-27 15:30:25','2015-07-27 15:30:25','<a href=\"http://thebeloitpod.com/wordpress1mediawiki1/index.php?title=Main_Page\">TBP Wiki</a>','TBP Wiki','','inherit','closed','open','','58-revision-v1','','','2015-07-27 15:30:25','2015-07-27 15:30:25','',58,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/58-revision-v1/',0,'revision','',0),(68,1,'2015-08-02 01:45:42','2015-08-02 01:45:42','<p style=\"text-align: left;\">At TBP we will have our own wiki for all things relevant to TBP, Beloit, and our communityIf you would like to see information added or corrected please take it upon yourself to contribute. You are responsible for choosing the role you play in this wiki, if you would like to contribute please do! A few examples are if you see a typo, we encourage and need you to fix it. If you think a sentence is oddly worded and can make it better, do it. If you\'ve never edited a wiki we\'re here to lend a helping hand, join the TBP members/group and you will get the help you need.</p>\n\n\n[caption id=\"attachment_205\" align=\"aligncenter\" width=\"1000\"]<a href=\"http://thebeloitpod.com/mediawiki1/index.php?title=Main_Page\"><img class=\"size-full wp-image-205\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastWIKIbanner.jpg\" alt=\"Click image to enter Wiki\" width=\"1000\" height=\"562\" /></a> Click image to enter Wiki[/caption]','TBP Wiki','','inherit','closed','open','','58-autosave-v1','','','2015-08-02 01:45:42','2015-08-02 01:45:42','',58,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/58-autosave-v1/',0,'revision','',0),(69,1,'2015-07-27 15:37:54','2015-07-27 15:37:54','<a href=\"http://thebeloitpod.com/wordpress1mediawiki1/index.php?title=Main_Page\">TBP Wiki</a>\r\n\r\nA <a title=\"Wiki\" href=\"http://tspwiki.com/index.php?title=Wiki\">wiki</a>,(the above link) is meant to be a <b><a title=\"Do-ocracy\" href=\"http://tspwiki.com/index.php?title=Do-ocracy\">Do-ocracy</a></b>. If you would like to see information added or corrected please take it upon yourself to contribute. You are responsible for choosing the role you play in this wiki, if you would like to contribute please do! A few examples are if you see a typo, we encourage and need you to fix it. If you think a sentence is oddly worded and can make it better, do it. If you\'ve never edited a wiki we\'re here to lend a helping hand, join the TBP members/group and you will get the help you need.','TBP Wiki','','inherit','closed','open','','58-revision-v1','','','2015-07-27 15:37:54','2015-07-27 15:37:54','',58,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/58-revision-v1/',0,'revision','',0),(488,1,'2015-08-28 23:26:54','2015-08-28 23:26:54','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/WADR-logo-e1428883764958.jpg\"><img class=\"aligncenter size-medium wp-image-486\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/WADR-logo-e1428883764958-300x300.jpg\" alt=\"WADR-logo-e1428883764958\" width=\"300\" height=\"300\" /></a>Major Announcement! Beginning Monday morning I will be live on 103.5 WADR Janesville Community Radio from 7AM-8AM. If you are outside of the Janesville area just go to<a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fjanesvillecommunityradio.com%2Flisten-live%2F&h=vAQF4zuUnAQFuw1pJ_eRgKVgPfBmC1AyBQCjmdRpjMJp4Vg&enc=AZPe1zUoonwiPxuPwP0e-Z2hU5iioe_F2Ckt5i6fpfyqxdtlDn8HzeoF6P-IgQj1ZUded6Hug5suQ6OFgtNww5O1VMOiUjlMA5aeCsIRy2t896_EQtcXrZqhWLklzQ5SZ2xeo-npcj2-yh12Fz12OHdQIFokXDcNQ5MbbTT_mploVQ&s=1\" target=\"_blank\" rel=\"nofollow\">janesvillecommunityradio.com/listen-live/</a>. Thanks to everyone at WADR for the opportunity.\n\nWADR currently has many great programs:\n\nArtSpark With Eddy Baran\n\nBeloit Snappers Baseball\n\nBFunny Sundays\n\nChrist in the City\n\nMindful Mondays\n\nOMP Radio\n\nDemocracy Now\n\nAnd more...\n\nIf you would like to volunteer you can do so by visiting <a href=\"http://janesvillecommunityradio.com/volunteer/\" target=\"_blank\">janesvillecommunityradio.com/volunteer</a>','103.5 WADR Jna','','inherit','open','open','','485-autosave-v1','','','2015-08-28 23:26:54','2015-08-28 23:26:54','',485,'http://thebeloitpod.com/wordpress1/index.php/2015/08/28/485-autosave-v1/',0,'revision','',0),(74,1,'2015-07-27 17:38:54','2015-07-27 17:38:54','','Suggestions, Support, and Resources','','publish','closed','open','','suggestions-support-and-resources','','','2015-07-27 17:43:21','2015-07-27 17:43:21','',0,'http://thebeloitpod.com/wordpress1wordpress1/?post_type=forum&p=74',0,'forum','',0),(75,1,'2015-07-27 17:38:54','2015-07-27 17:38:54','','Suggestions, Support, and Resources','','inherit','closed','open','','74-revision-v1','','','2015-07-27 17:38:54','2015-07-27 17:38:54','',74,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/74-revision-v1/',0,'revision','',0),(76,1,'2015-07-27 17:40:15','2015-07-27 17:40:15','All announcements will go here, regarding the show, the forum, and thebeloitpod.com.','Announcements','','publish','closed','open','','announcements','','','2015-07-27 17:40:15','2015-07-27 17:40:15','',74,'http://thebeloitpod.com/wordpress1wordpress1/?post_type=forum&p=76',0,'forum','',0),(77,1,'2015-07-27 17:40:15','2015-07-27 17:40:15','All announcements will go here, regarding the show, the forum, and thebeloitpod.com.','Announcements','','inherit','closed','open','','76-revision-v1','','','2015-07-27 17:40:15','2015-07-27 17:40:15','',76,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/27/76-revision-v1/',0,'revision','',0),(486,1,'2015-08-28 23:19:27','2015-08-28 23:19:27','','WADR-logo-e1428883764958','','inherit','open','open','','wadr-logo-e1428883764958','','','2015-08-28 23:19:27','2015-08-28 23:19:27','',485,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/WADR-logo-e1428883764958.jpg',0,'attachment','image/jpeg',0),(82,1,'2015-07-28 11:45:08','2015-07-28 11:45:08','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\"><img class=\"aligncenter wp-image-328\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER-300x39.png\" alt=\"FORUMBANNER\" width=\"502\" height=\"65\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\">\r\n</a>\r\nWelcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\r\n[bbp-forum-index]\r\n[custom-facebook-feed]\r\n<a class=\"twitter-timeline\" href=\"https://twitter.com/thebeloitpod\" data-widget-id=\"635284292143153152\">Tweets by @thebeloitpod</a>\r\n<script type=\"mce-mce-no/type\">// <![CDATA[\r\n!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?\'http\':\'https\';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+\"://platform.twitter.com/widgets.js\";fjs.parentNode.insertBefore(js,fjs);}}(document,\"script\",\"twitter-wjs\");\r\n// ]]></script>','Forum','','publish','closed','open','','forum','','','2015-08-23 03:21:14','2015-08-23 03:21:14','',0,'http://thebeloitpod.com/wordpress1wordpress1/?page_id=82',0,'page','',0),(83,1,'2015-07-28 11:45:08','2015-07-28 11:45:08','Welcome to The Beloit Podcast Community Forum.\r\n\r\n[bbp-forum-index]','Forum','','inherit','closed','open','','82-revision-v1','','','2015-07-28 11:45:08','2015-07-28 11:45:08','',82,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/28/82-revision-v1/',0,'revision','',0),(84,1,'2015-07-28 11:54:51','2015-07-28 11:54:51','This is where you can introduce yourself to the TBP community.','Introductions','','publish','closed','open','','introductions','','','2015-08-03 03:04:05','2015-08-03 03:04:05','',0,'http://thebeloitpod.com/wordpress1wordpress1/?post_type=forum&p=84',0,'forum','',0),(85,1,'2015-07-28 11:54:51','2015-07-28 11:54:51','This is where you can introduce yourself to the TBP community.','Introductions','','inherit','closed','open','','84-revision-v1','','','2015-07-28 11:54:51','2015-07-28 11:54:51','',84,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/28/84-revision-v1/',0,'revision','',0),(86,1,'2015-07-28 11:57:08','2015-07-28 11:57:08','Share your skills and self sufficiency topics with the TBP community.','Skills and Self-sufficiency topics','','publish','closed','open','','skills-and-self-sufficiency-topics','','','2015-07-28 11:57:08','2015-07-28 11:57:08','',0,'http://thebeloitpod.com/wordpress1wordpress1/?post_type=forum&p=86',0,'forum','',0),(87,1,'2015-07-28 11:57:08','2015-07-28 11:57:08','Share your skills and self sufficiency topics with the TBP community.','Skills and Self-sufficiency topics','','inherit','closed','open','','86-revision-v1','','','2015-07-28 11:57:08','2015-07-28 11:57:08','',86,'http://thebeloitpod.com/wordpress1wordpress1/index.php/2015/07/28/86-revision-v1/',0,'revision','',0),(501,1,'2015-09-07 18:09:41','2015-09-07 18:09:41',' \n\nIts Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week! I am live Monday-Friday on 103.5FM as well as streaming live at <a href=\"http://janesvillecommunityradio.com\" target=\"_blank\">janesvillecommunityradio.com</a> 7AM-8AM. You can listen on your smartphone, tablet, PC, or if you live in the Janesville area tune in to 103.\n\n \n\n<strong><img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11951151_1706070902962439_8273790517523676929_n.jpg?oh=d5bee96bc3e96af1a4bf8176fedcd446&oe=567385E6\" alt=\"\" width=\"378\" height=\"378\" /><em>Todays Links</em></strong>\n\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\n\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\n\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\n\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>\nLate Show on WADR 2AM-3AM 9/5/15\n\n[embed]http://traffic.libsyn.com/thebeloitpod/LaborDay.mp3[/embed]\n\nLabor Day Morning 7AM on WADR','Labor Day 2015 at WADR','','inherit','open','open','','495-autosave-v1','','','2015-09-07 18:09:41','2015-09-07 18:09:41','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-autosave-v1/',0,'revision','',0),(502,1,'2015-09-07 17:50:21','2015-09-07 17:50:21',' \r\n\r\nIts Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week!\r\n\r\n \r\n\r\n<strong><img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11951151_1706070902962439_8273790517523676929_n.jpg?oh=d5bee96bc3e96af1a4bf8176fedcd446&oe=567385E6\" alt=\"\" width=\"378\" height=\"378\" /><em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>\r\nLate Show on WADR 2AM-3AM 9/5/15\r\n[embed]http://traffic.libsyn.com/thebeloitpod/LaborDay.mp3[/embed]','Labor Day 2015 at WADR','','inherit','open','open','','495-revision-v1','','','2015-09-07 17:50:21','2015-09-07 17:50:21','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-revision-v1/',0,'revision','',0),(229,1,'2015-08-03 02:58:04','2015-08-03 02:58:04','This where you can create new topics to barter, negotiate, or trade at your own will. I will moderate as little as necessary. Being a ridiculous(search the term if needed) will get you removed completely. This is an honorable forum! Let it remain as such.','Barter/Negotiate/trade','','publish','closed','open','','barternegotiatetrade','','','2015-08-03 03:03:31','2015-08-03 03:03:31','',0,'http://thebeloitpod.com/wordpress1/?post_type=forum&p=229',2,'forum','',0),(512,1,'2015-09-09 20:57:53','2015-09-09 20:57:53','','jcstar','','inherit','open','open','','jcstar','','','2015-09-09 20:57:53','2015-09-09 20:57:53','',511,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/09/jcstar.jpg',0,'attachment','image/jpeg',0),(205,1,'2015-07-30 21:45:40','2015-07-30 21:45:40','','thebeloitpodcastWIKIbanner','Click image to enter Wiki','inherit','closed','open','','thebeloitpodcastwikibanner','','','2015-07-30 21:46:45','2015-07-30 21:46:45','',58,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastWIKIbanner.jpg',0,'attachment','image/jpeg',0),(244,1,'2015-08-05 14:44:26','2015-08-05 14:44:26','Charles Alexander Eastman was a Native American Indian who lived from 1858-1939.In his early life he was known as Hakadah, then Ohiye S\'a, and later taking the name Charles Alexander Eastman. Today we will look at an individual who continues to have relevance to Beloit and its history.\r\n\r\n[caption id=\"attachment_245\" align=\"alignnone\" width=\"300\"]<img class=\"size-medium wp-image-245\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/eastmancollage-300x258.jpg\" alt=\"Hakadah, Ohíye S’a, & Charles Alexander Eastman \" width=\"300\" height=\"258\" /> Hakadah, Ohíye S’a, & Charles Alexander Eastman[/caption]\r\n\r\n<em>Todays Links</em>\r\n\r\n<a href=\"https://en.wikipedia.org/wiki/Charles_Eastman\" target=\"_blank\">Charles Eastman on Wikipedia.com</a>\r\n\r\n<a href=\"https://www.facebook.com/pages/Charles-Eastman/106329239398187?fref=ts\" target=\"_blank\">Charles A. Eastman on Facebook</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?v=w-HPThJPHAI\">Youtube.com- Ohiyesa:Soul of an Indian</a>\r\n\r\n \r\n\r\n \r\nRead more at http://thebeloitpod.libsyn.com/#bfTlj78S33d4UZYx.99','Hakadah, Ohíye S’a, & Charles Alexander Eastman','','publish','closed','open','','hakadah-ohiye-sa-charles-alexander-eastman','','','2015-08-05 16:47:18','2015-08-05 16:47:18','',0,'http://thebeloitpod.com/wordpress1/?p=244',0,'post','',0),(485,1,'2015-08-28 23:25:31','2015-08-28 23:25:31','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/WADR-logo-e1428883764958.jpg\"><img class=\"aligncenter size-medium wp-image-486\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/WADR-logo-e1428883764958-300x300.jpg\" alt=\"WADR-logo-e1428883764958\" width=\"300\" height=\"300\" /></a>Major Announcement! Beginning Monday morning I will be live on 103.5 WADR Janesville Community Radio from 7AM-8AM. If you are outside of the Janesville area just go to<a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fjanesvillecommunityradio.com%2Flisten-live%2F&h=vAQF4zuUnAQFuw1pJ_eRgKVgPfBmC1AyBQCjmdRpjMJp4Vg&enc=AZPe1zUoonwiPxuPwP0e-Z2hU5iioe_F2Ckt5i6fpfyqxdtlDn8HzeoF6P-IgQj1ZUded6Hug5suQ6OFgtNww5O1VMOiUjlMA5aeCsIRy2t896_EQtcXrZqhWLklzQ5SZ2xeo-npcj2-yh12Fz12OHdQIFokXDcNQ5MbbTT_mploVQ&s=1\" target=\"_blank\" rel=\"nofollow\">janesvillecommunityradio.com/listen-live/</a>. Thanks to everyone at WADR for the opportunity.\r\n\r\nWADR currently has many great programs:\r\n\r\nArtSpark With Eddy Baran\r\n\r\nBeloit Snappers Baseball\r\n\r\nBFunny Sundays\r\n\r\nChrist in the City\r\n\r\nMindful Mondays\r\n\r\nOMP Radio\r\n\r\nDemocracy Now\r\n\r\nAnd more...\r\n\r\nIf you would like to volunteer you can do so by visiting <a href=\"http://janesvillecommunityradio.com/volunteer/\" target=\"_blank\">janesvillecommunityradio.com/volunteer</a>','103.5 WADR Janesville Community Radio','','publish','open','open','','485','','','2015-08-28 23:27:02','2015-08-28 23:27:02','',0,'http://thebeloitpod.com/wordpress1/?p=485',0,'post','',0),(245,1,'2015-08-05 14:43:03','2015-08-05 14:43:03','','eastmancollage','Hakadah, Ohíye S’a, & Charles Alexander Eastman\r\n','inherit','closed','open','','eastmancollage','','','2015-08-06 15:34:11','2015-08-06 15:34:11','',244,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/eastmancollage.jpg',0,'attachment','image/jpeg',0),(91,1,'2015-07-29 01:51:03','2015-07-29 01:51:03','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner1.jpg','cropped-cropped-thebeloitpodcastbanner1.jpg','','inherit','closed','open','','cropped-cropped-thebeloitpodcastbanner1-jpg','','','2015-07-29 01:51:03','2015-07-29 01:51:03','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner1.jpg',0,'attachment','image/jpeg',0),(92,1,'2015-07-29 01:59:37','2015-07-29 01:59:37','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner11.jpg','cropped-cropped-thebeloitpodcastbanner11.jpg','','inherit','closed','open','','cropped-cropped-thebeloitpodcastbanner11-jpg','','','2015-07-29 01:59:37','2015-07-29 01:59:37','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner11.jpg',0,'attachment','image/jpeg',0),(93,1,'2015-07-29 01:59:55','2015-07-29 01:59:55','http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner.jpg','cropped-cropped-thebeloitpodcastbanner.jpg','','inherit','closed','open','','cropped-cropped-thebeloitpodcastbanner-jpg','','','2015-07-29 01:59:55','2015-07-29 01:59:55','',0,'http://thebeloitpod.com/wordpress1wordpress1/wp-content/uploads/2015/07/cropped-cropped-thebeloitpodcastbanner.jpg',0,'attachment','image/jpeg',0),(94,1,'2015-07-29 12:43:52','2015-07-29 12:43:52','\r\n<br /><p><img src=\"http://www.beloitauction.com/wp-content/uploads/2012/03/rich-r.jpg\" alt=\"Rich Ranft\" width=\"100\" height=\"140\" /></p>\r\n<p><span style=\"font-size: 12pt;\">In our first interview were talking to Rich Ranft at the Beloit Auction and Realty. Rich was one of the only people in Beloit that I saw also had a Pocast, and it seemed fitting to talk to him first. </span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\">Todays Links</span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/\" target=\"_blank\">www.beloitauction.com</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/podcasts-2/\" target=\"_blank\">Rich\'s Podcast- Call of the Auction Man! (right click and save his episode links to download)</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://apps.microsoft.com/windows/en-us/app/the-podcast-source/d1029dc0-f4b0-470e-bff5-3d6e787aaf9e\" target=\"_blank\">Our Mobile App for windows</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://itunes.apple.com/us/app/the-podcast-source/id419361759?mt=8\">Itunes App</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://www.kickstarter.com/projects/search?utf8=%E2%9C%93&term=the+beloit+podcast\" target=\"_blank\">Kickstarter- Any donations will go towards bringing better content.</a></span></p>\r\n<p><span style=\"font-size: 12pt;\">Get the Apps, then search for The Beloit Podcast</span></p><br /><a href=\"http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3\">Check out this episode!</a>\r\n[embed]http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3[/embed]','Rich Ranft- Beloit Auction and Realty','','publish','open','open','','rich-ranft-beloit-auction-and-realty','','','2015-07-29 19:38:53','2015-07-29 19:38:53','',0,'http://thebeloitpod.com/wordpress1/?p=94',0,'post','',0),(95,1,'2015-07-29 12:43:52','2015-07-29 12:43:52','[iframe style=\"border:none\" src=\"http://html5-player.libsyn.com/embed/episode/id/3624231/height/100/width/480/thumbnail/yes/theme/standard-mini\" height=\"100\" width=\"480\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen]<br /><p><img src=\"http://www.beloitauction.com/wp-content/uploads/2012/03/rich-r.jpg\" alt=\"Rich Ranft\" width=\"100\" height=\"140\" /></p>\r\n<p><span style=\"font-size: 12pt;\">In our first interview were talking to Rich Ranft at the Beloit Auction and Realty. Rich was one of the only people in Beloit that I saw also had a Pocast, and it seemed fitting to talk to him first. </span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\">Todays Links</span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/\" target=\"_blank\">www.beloitauction.com</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/podcasts-2/\" target=\"_blank\">Rich\'s Podcast- Call of the Auction Man! (right click and save his episode links to download)</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://apps.microsoft.com/windows/en-us/app/the-podcast-source/d1029dc0-f4b0-470e-bff5-3d6e787aaf9e\" target=\"_blank\">Our Mobile App for windows</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://itunes.apple.com/us/app/the-podcast-source/id419361759?mt=8\">Itunes App</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://www.kickstarter.com/projects/search?utf8=%E2%9C%93&term=the+beloit+podcast\" target=\"_blank\">Kickstarter- Any donations will go towards bringing better content.</a></span></p>\r\n<p><span style=\"font-size: 12pt;\">Get the Apps, then search for The Beloit Podcast</span></p><br /><a href=\"http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3\">Check out this episode!</a>','Rich Ranft- Beloit Auction and Realty','','inherit','closed','open','','94-revision-v1','','','2015-07-29 12:43:52','2015-07-29 12:43:52','',94,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/94-revision-v1/',0,'revision','',0),(100,1,'2015-07-29 19:38:12','2015-07-29 19:38:12','[embed]http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3[/embed]\r\n<br /><p><img src=\"http://www.beloitauction.com/wp-content/uploads/2012/03/rich-r.jpg\" alt=\"Rich Ranft\" width=\"100\" height=\"140\" /></p>\r\n<p><span style=\"font-size: 12pt;\">In our first interview were talking to Rich Ranft at the Beloit Auction and Realty. Rich was one of the only people in Beloit that I saw also had a Pocast, and it seemed fitting to talk to him first. </span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\">Todays Links</span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/\" target=\"_blank\">www.beloitauction.com</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/podcasts-2/\" target=\"_blank\">Rich\'s Podcast- Call of the Auction Man! (right click and save his episode links to download)</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://apps.microsoft.com/windows/en-us/app/the-podcast-source/d1029dc0-f4b0-470e-bff5-3d6e787aaf9e\" target=\"_blank\">Our Mobile App for windows</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://itunes.apple.com/us/app/the-podcast-source/id419361759?mt=8\">Itunes App</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://www.kickstarter.com/projects/search?utf8=%E2%9C%93&term=the+beloit+podcast\" target=\"_blank\">Kickstarter- Any donations will go towards bringing better content.</a></span></p>\r\n<p><span style=\"font-size: 12pt;\">Get the Apps, then search for The Beloit Podcast</span></p><br /><a href=\"http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3\">Check out this episode!</a>','Rich Ranft- Beloit Auction and Realty','','inherit','closed','open','','94-revision-v1','','','2015-07-29 19:38:12','2015-07-29 19:38:12','',94,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/94-revision-v1/',0,'revision','',0),(98,1,'2015-07-29 19:34:05','2015-07-29 19:34:05','[embed]http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3[/embed]\r\n[iframe style=\"border:none\" src=\"http://html5-player.libsyn.com/embed/episode/id/3624231/height/100/width/480/thumbnail/yes/theme/standard-mini\" height=\"100\" width=\"480\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen]<br /><p><img src=\"http://www.beloitauction.com/wp-content/uploads/2012/03/rich-r.jpg\" alt=\"Rich Ranft\" width=\"100\" height=\"140\" /></p>\r\n<p><span style=\"font-size: 12pt;\">In our first interview were talking to Rich Ranft at the Beloit Auction and Realty. Rich was one of the only people in Beloit that I saw also had a Pocast, and it seemed fitting to talk to him first. </span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\">Todays Links</span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/\" target=\"_blank\">www.beloitauction.com</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/podcasts-2/\" target=\"_blank\">Rich\'s Podcast- Call of the Auction Man! (right click and save his episode links to download)</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://apps.microsoft.com/windows/en-us/app/the-podcast-source/d1029dc0-f4b0-470e-bff5-3d6e787aaf9e\" target=\"_blank\">Our Mobile App for windows</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://itunes.apple.com/us/app/the-podcast-source/id419361759?mt=8\">Itunes App</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://www.kickstarter.com/projects/search?utf8=%E2%9C%93&term=the+beloit+podcast\" target=\"_blank\">Kickstarter- Any donations will go towards bringing better content.</a></span></p>\r\n<p><span style=\"font-size: 12pt;\">Get the Apps, then search for The Beloit Podcast</span></p><br /><a href=\"http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3\">Check out this episode!</a>','Rich Ranft- Beloit Auction and Realty','','inherit','closed','open','','94-revision-v1','','','2015-07-29 19:34:05','2015-07-29 19:34:05','',94,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/94-revision-v1/',0,'revision','',0),(99,1,'2015-07-29 19:37:58','2015-07-29 19:37:58','[embed]http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3[/embed]\n<br /><p><img src=\"http://www.beloitauction.com/wp-content/uploads/2012/03/rich-r.jpg\" alt=\"Rich Ranft\" width=\"100\" height=\"140\" /></p>\n<p><span style=\"font-size: 12pt;\">In our first interview were talking to Rich Ranft at the Beloit Auction and Realty. Rich was one of the only people in Beloit that I saw also had a Pocast, and it seemed fitting to talk to him first. </span></p>\n<p><span style=\"text-decoration: underline; font-size: 12pt;\">Todays Links</span></p>\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/\" target=\"_blank\">www.beloitauction.com</a></span></p>\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/podcasts-2/\" target=\"_blank\">Rich\'s Podcast- Call of the Auction Man! (right click and save his episode links to download)</a></span></p>\n<p><span style=\"font-size: 12pt;\"><a href=\"http://apps.microsoft.com/windows/en-us/app/the-podcast-source/d1029dc0-f4b0-470e-bff5-3d6e787aaf9e\" target=\"_blank\">Our Mobile App for windows</a></span></p>\n<p><span style=\"font-size: 12pt;\"><a href=\"https://itunes.apple.com/us/app/the-podcast-source/id419361759?mt=8\">Itunes App</a></span></p>\n<p><span style=\"font-size: 12pt;\"><a href=\"https://www.kickstarter.com/projects/search?utf8=%E2%9C%93&term=the+beloit+podcast\" target=\"_blank\">Kickstarter- Any donations will go towards bringing better content.</a></span></p>\n<p><span style=\"font-size: 12pt;\">Get the Apps, then search for The Beloit Podcast</span></p><br /><a href=\"http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3\">Check out this episode!</a>','Rich Ranft- Beloit Auction and Realty','','inherit','closed','open','','94-autosave-v1','','','2015-07-29 19:37:58','2015-07-29 19:37:58','',94,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/94-autosave-v1/',0,'revision','',0),(101,1,'2015-07-29 19:38:53','2015-07-29 19:38:53','\r\n<br /><p><img src=\"http://www.beloitauction.com/wp-content/uploads/2012/03/rich-r.jpg\" alt=\"Rich Ranft\" width=\"100\" height=\"140\" /></p>\r\n<p><span style=\"font-size: 12pt;\">In our first interview were talking to Rich Ranft at the Beloit Auction and Realty. Rich was one of the only people in Beloit that I saw also had a Pocast, and it seemed fitting to talk to him first. </span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\">Todays Links</span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/\" target=\"_blank\">www.beloitauction.com</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://www.beloitauction.com/podcasts-2/\" target=\"_blank\">Rich\'s Podcast- Call of the Auction Man! (right click and save his episode links to download)</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"http://apps.microsoft.com/windows/en-us/app/the-podcast-source/d1029dc0-f4b0-470e-bff5-3d6e787aaf9e\" target=\"_blank\">Our Mobile App for windows</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://itunes.apple.com/us/app/the-podcast-source/id419361759?mt=8\">Itunes App</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"><a href=\"https://www.kickstarter.com/projects/search?utf8=%E2%9C%93&term=the+beloit+podcast\" target=\"_blank\">Kickstarter- Any donations will go towards bringing better content.</a></span></p>\r\n<p><span style=\"font-size: 12pt;\">Get the Apps, then search for The Beloit Podcast</span></p><br /><a href=\"http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3\">Check out this episode!</a>\r\n[embed]http://traffic.libsyn.com/thebeloitpod/TBP-RichRanft.mp3[/embed]','Rich Ranft- Beloit Auction and Realty','','inherit','closed','open','','94-revision-v1','','','2015-07-29 19:38:53','2015-07-29 19:38:53','',94,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/94-revision-v1/',0,'revision','',0),(505,1,'2015-09-07 18:19:28','2015-09-07 18:19:28','Its Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week! I am live Monday-Friday on 103.5FM as well as streaming live at <a href=\"http://janesvillecommunityradio.com\" target=\"_blank\">janesvillecommunityradio.com</a> 7AM-8AM. You can listen on your smartphone, tablet, PC, or if you live in the Janesville area tune in to 103.5FM.\r\n\r\n \r\n\r\n<strong>\r\n<em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>\r\nLate Show on WADR 2AM-3AM 9/5/15\r\n\r\n[embed]http://traffic.libsyn.com/thebeloitpod/LaborDay.mp3[/embed]\r\n\r\nLabor Day Morning 7AM 8AM on WADR','Labor Day 2015 at WADR','','inherit','open','open','','495-revision-v1','','','2015-09-07 18:19:28','2015-09-07 18:19:28','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-revision-v1/',0,'revision','',0),(503,1,'2015-09-07 18:09:46','2015-09-07 18:09:46',' \r\n\r\nIts Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week! I am live Monday-Friday on 103.5FM as well as streaming live at <a href=\"http://janesvillecommunityradio.com\" target=\"_blank\">janesvillecommunityradio.com</a> 7AM-8AM. You can listen on your smartphone, tablet, PC, or if you live in the Janesville area tune in to 103.\r\n\r\n \r\n\r\n<strong><img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11951151_1706070902962439_8273790517523676929_n.jpg?oh=d5bee96bc3e96af1a4bf8176fedcd446&oe=567385E6\" alt=\"\" width=\"378\" height=\"378\" /><em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>\r\nLate Show on WADR 2AM-3AM 9/5/15\r\n\r\n[embed]http://traffic.libsyn.com/thebeloitpod/LaborDay.mp3[/embed]\r\n\r\nLabor Day Morning 7AM 8AM on WADR','Labor Day 2015 at WADR','','inherit','open','open','','495-revision-v1','','','2015-09-07 18:09:46','2015-09-07 18:09:46','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-revision-v1/',0,'revision','',0),(504,1,'2015-09-07 18:11:11','2015-09-07 18:11:11','Its Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week! I am live Monday-Friday on 103.5FM as well as streaming live at <a href=\"http://janesvillecommunityradio.com\" target=\"_blank\">janesvillecommunityradio.com</a> 7AM-8AM. You can listen on your smartphone, tablet, PC, or if you live in the Janesville area tune in to 103.5FM.\r\n\r\n \r\n\r\n<strong><img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11951151_1706070902962439_8273790517523676929_n.jpg?oh=d5bee96bc3e96af1a4bf8176fedcd446&oe=567385E6\" alt=\"\" width=\"378\" height=\"378\" /><em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>\r\nLate Show on WADR 2AM-3AM 9/5/15\r\n\r\n[embed]http://traffic.libsyn.com/thebeloitpod/LaborDay.mp3[/embed]\r\n\r\nLabor Day Morning 7AM 8AM on WADR','Labor Day 2015 at WADR','','inherit','open','open','','495-revision-v1','','','2015-09-07 18:11:11','2015-09-07 18:11:11','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-revision-v1/',0,'revision','',0),(111,1,'2015-07-29 22:12:38','2015-07-29 22:12:38','On this episode were talking to Rich Porter, Beloit recording artist and life-long community member. You can find his work all over the web. It was great to get Rich on for an episode to share some insights on Beloit from another perspective. \r\n\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/R.Porter-169x300.jpg\" alt=\"R.Porter\" width=\"169\" height=\"300\" class=\"alignnone size-medium wp-image-114\" />\r\n\r\n<a href=\"https://www.reverbnation.com/porter1342\" target=\"_blank\">Rich Porter on ReverbNation</a>\r\n<a href=\"http://richporteraayyyooo.yolasite.com\" target=\"_blank\">richporteraayyyooo.yolasite.com</a>\r\n<a href=\"https://twitter.com/porter1342\" target=\"_blank\">Rich @ twitter</a>\r\n<a href=\"https://www.facebook.com/ladolphlius.richardson?fref=ts\" target=\"_blank\">Rich @ Facebook</a>\r\n<a href=\"http://thebeloitpod.libsyn.com/page/2/size/25\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Rich Porter','','publish','closed','open','','rich-porter','','','2015-07-30 01:26:29','2015-07-30 01:26:29','',0,'http://thebeloitpod.com/wordpress1/?p=111',0,'post','',0),(112,1,'2015-07-29 22:12:38','2015-07-29 22:12:38','On this episode were talking to Rich Porter, Beloit recording artist and life-long community member. You can find his work all over the web. It was great to get Rich on for an episode to share some insights on Beloit from another perspective. \r\n\r\nimage: https://scontent-ord1-1.xx.fbcdn.net/hphotos-xfp1/v/t1.0-9/10460450_1008319879186828_804661431888703848_n.jpg?oh=056c6e808a3be9d3ccff86f03702d271&oe=55F0358B\r\n\r\nRich Porter\r\n\r\nRich @ twitter\r\n\r\nRich @ Facebook\r\n\r\nEmail us or send a voicemail regarding the episode and I will respond as sufficiently as I can. Enjoy!\r\n\r\n\r\nRead more at http://thebeloitpod.libsyn.com/page/2/size/25#jZ7LErWWmIuOsLgD.99','Rich Porter','','inherit','closed','open','','111-revision-v1','','','2015-07-29 22:12:38','2015-07-29 22:12:38','',111,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/111-revision-v1/',0,'revision','',0),(113,1,'2015-07-30 01:21:18','2015-07-30 01:21:18','On this episode were talking to Rich Porter, Beloit recording artist and life-long community member. You can find his work all over the web. It was great to get Rich on for an episode to share some insights on Beloit from another perspective. \n\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/R.Porter-169x300.jpg\" alt=\"R.Porter\" width=\"169\" height=\"300\" class=\"alignnone size-medium wp-image-114\" />\n\n\n<a href=\"http://richporteraayyyooo.yolasite.com\" target=\"_blank\">richporteraayyyooo.yolasite.com</a>\n<a href=\"https://twitter.com/porter1342\" target=\"_blank\">Rich @ twitter</a>\n<a href=\"https://www.facebook.com/ladolphlius.richardson?fref=ts\" target=\"_blank\">Rich @ Facebook</a>\n<a href=\"http://thebeloitpod.libsyn.com/page/2/size/25\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Rich Porter','','inherit','closed','open','','111-autosave-v1','','','2015-07-30 01:21:18','2015-07-30 01:21:18','',111,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/111-autosave-v1/',0,'revision','',0),(114,1,'2015-07-29 22:15:35','2015-07-29 22:15:35','','R.Porter','','inherit','closed','open','','r-porter','','','2015-08-04 03:39:38','2015-08-04 03:39:38','',111,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/R.Porter.jpg',4,'attachment','image/jpeg',0),(115,1,'2015-07-29 22:16:01','2015-07-29 22:16:01','On this episode were talking to Rich Porter, Beloit recording artist and life-long community member. You can find his work all over the web. It was great to get Rich on for an episode to share some insights on Beloit from another perspective. \r\n\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/R.Porter-169x300.jpg\" alt=\"R.Porter\" width=\"169\" height=\"300\" class=\"alignnone size-medium wp-image-114\" />\r\n\r\n\r\n\r\n\r\nRich @ twitter\r\n\r\nRich @ Facebook\r\n\r\nEmail us or send a voicemail regarding the episode and I will respond as sufficiently as I can. Enjoy!\r\n\r\n\r\nRead more at http://thebeloitpod.libsyn.com/page/2/size/25#jZ7LErWWmIuOsLgD.99','Rich Porter','','inherit','closed','open','','111-revision-v1','','','2015-07-29 22:16:01','2015-07-29 22:16:01','',111,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/111-revision-v1/',0,'revision','',0),(116,1,'2015-07-29 22:19:09','2015-07-29 22:19:09','We have a special episode for this Fathers Day at The Beloit Podcast. Reese Wood interviews Reese Wood. We check in with my father for a few moments to discuss a little about himself and Beloit. Happy Fathers Day to all the dedicated fathers in our community! \r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Fathersday.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Fathersday-300x276.jpg\" alt=\"Fathersday\" width=\"300\" height=\"276\" class=\"alignnone size-medium wp-image-117\" /></a> \r\n\r\nReese Wood Reliable remodeling and repair on Facebook\r\n\r\nHistory behind \"15 miles on the Erie canal\" (Pete Seeger)\r\n\r\nDont forget to leave a voicemail @ 608 466 6013 OR Email us at thebeloitpod@gmail.com. Comment at your own will! \r\n\r\n\r\nRead more at http://thebeloitpod.libsyn.com/page/1/size/25#5rLlFYPuEley93tQ.99','Fathers Day- Reese Wood Interviews Reese Wood','','publish','closed','open','','fathers-day-reese-wood-interviews-reese-wood','','','2015-07-29 22:19:09','2015-07-29 22:19:09','',0,'http://thebeloitpod.com/wordpress1/?p=116',0,'post','',0),(117,1,'2015-07-29 22:18:38','2015-07-29 22:18:38','','Fathersday','','inherit','closed','open','','fathersday','','','2015-07-29 22:18:38','2015-07-29 22:18:38','',116,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Fathersday.jpg',0,'attachment','image/jpeg',0),(118,1,'2015-07-29 22:19:09','2015-07-29 22:19:09','We have a special episode for this Fathers Day at The Beloit Podcast. Reese Wood interviews Reese Wood. We check in with my father for a few moments to discuss a little about himself and Beloit. Happy Fathers Day to all the dedicated fathers in our community! \r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Fathersday.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Fathersday-300x276.jpg\" alt=\"Fathersday\" width=\"300\" height=\"276\" class=\"alignnone size-medium wp-image-117\" /></a> \r\n\r\nReese Wood Reliable remodeling and repair on Facebook\r\n\r\nHistory behind \"15 miles on the Erie canal\" (Pete Seeger)\r\n\r\nDont forget to leave a voicemail @ 608 466 6013 OR Email us at thebeloitpod@gmail.com. Comment at your own will! \r\n\r\n\r\nRead more at http://thebeloitpod.libsyn.com/page/1/size/25#5rLlFYPuEley93tQ.99','Fathers Day- Reese Wood Interviews Reese Wood','','inherit','closed','open','','116-revision-v1','','','2015-07-29 22:19:09','2015-07-29 22:19:09','',116,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/116-revision-v1/',0,'revision','',0),(119,1,'2015-07-29 22:30:32','2015-07-29 22:30:32','This Monday we are recapping on last weeks episodes, but in the future I would like to answer all your questions Beloit. Im also discussing the episode title to feature some of my thoughts about the show so far. I Hope you all have a great Monday!\r\n\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\" alt=\"ReeseCoffeeCleveland\" width=\"128\" height=\"192\" class=\"alignnone size-full wp-image-122\" />\r\n\r\nTodays Links\r\nKickstarter for The Beloit Podcast\r\n\r\n<a href=\"https://www.facebook.com/pages/Mississippi-Mass-Choir/108207145874797?fref=ts\" target=\"_blank\">Mississippi Mass Choir on Facebook</a>\r\n\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com/page/1/size/25#5rLlFYPuEley93tQ.99</a>','Last week recap & My thoughts about TBP so far','','publish','closed','open','','last-week-recap-my-thoughts-about-tbp-so-far','','','2015-07-29 22:30:32','2015-07-29 22:30:32','',0,'http://thebeloitpod.com/wordpress1/?p=119',0,'post','',0),(120,1,'2015-07-29 22:23:40','2015-07-29 22:23:40','[iframe style=\"border:none\" src=\"http://html5-player.libsyn.com/embed/episode/id/3628997/height/100/width/480/thumbnail/yes/theme/standard-mini\" height=\"100\" width=\"480\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen]<br /><p><span style=\"text-decoration: underline; font-size: 14pt;\"><span style=\"color: #000000;\"><span style=\"color: #00ff00;\"><span style=\"color: #000000; text-decoration: underline;\">Throw Your Android and Apple device out the window! (or not)? People are the most advanced technology we have!</span></span></span></span></p>\r\n<p><img src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xft1/v/t1.0-9/11393154_881790831875475_8447565484140662241_n.jpg?oh=a27cab767d125028c3daed9084696f3d&oe=5629CB01\" alt=\"Reese Coffee\" width=\"120\" height=\"180\" /> <span style=\"font-size: 12pt;\">This Monday we are recapping on last weeks episodes, but in the future I would like to answer all your questions Beloit. Im also discussing the episode title to feature some of my thoughts about the show so far. I Hope you all have a great Monday! </span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\">Todays Links</span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\"><a href=\"https://www.kickstarter.com/projects/1709001251/the-beloit-podcast?ref=nav_search\" target=\"_blank\">Kickstarter for The Beloit Podcast</a></span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\"><a href=\"https://www.facebook.com/TMMC1\" target=\"_blank\">Mississippi Mass Choir on Facebook</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"> </span></p><br /><a href=\"http://thebeloitpod.libsyn.com/last-week-recap-throw-your-android-or-apple-device-out-the-windows-or-not-people-are-the-most-advanced-technology-we-have\">Check out this episode!</a>','Last week recap & My thoughts about TBP so far','','draft','open','open','','','','','2015-07-29 22:23:40','2015-07-29 22:23:40','',0,'http://thebeloitpod.com/wordpress1/?p=120',0,'post','',0),(121,1,'2015-07-29 22:23:40','2015-07-29 22:23:40','[iframe style=\"border:none\" src=\"http://html5-player.libsyn.com/embed/episode/id/3628997/height/100/width/480/thumbnail/yes/theme/standard-mini\" height=\"100\" width=\"480\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen]<br /><p><span style=\"text-decoration: underline; font-size: 14pt;\"><span style=\"color: #000000;\"><span style=\"color: #00ff00;\"><span style=\"color: #000000; text-decoration: underline;\">Throw Your Android and Apple device out the window! (or not)? People are the most advanced technology we have!</span></span></span></span></p>\r\n<p><img src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xft1/v/t1.0-9/11393154_881790831875475_8447565484140662241_n.jpg?oh=a27cab767d125028c3daed9084696f3d&oe=5629CB01\" alt=\"Reese Coffee\" width=\"120\" height=\"180\" /> <span style=\"font-size: 12pt;\">This Monday we are recapping on last weeks episodes, but in the future I would like to answer all your questions Beloit. Im also discussing the episode title to feature some of my thoughts about the show so far. I Hope you all have a great Monday! </span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\">Todays Links</span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\"><a href=\"https://www.kickstarter.com/projects/1709001251/the-beloit-podcast?ref=nav_search\" target=\"_blank\">Kickstarter for The Beloit Podcast</a></span></p>\r\n<p><span style=\"text-decoration: underline; font-size: 12pt;\"><a href=\"https://www.facebook.com/TMMC1\" target=\"_blank\">Mississippi Mass Choir on Facebook</a></span></p>\r\n<p><span style=\"font-size: 12pt;\"> </span></p><br /><a href=\"http://thebeloitpod.libsyn.com/last-week-recap-throw-your-android-or-apple-device-out-the-windows-or-not-people-are-the-most-advanced-technology-we-have\">Check out this episode!</a>','Last week recap & My thoughts about TBP so far','','inherit','closed','open','','120-revision-v1','','','2015-07-29 22:23:40','2015-07-29 22:23:40','',120,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/120-revision-v1/',0,'revision','',0),(122,1,'2015-07-29 22:26:37','2015-07-29 22:26:37','','ReeseCoffeeCleveland','','inherit','closed','open','','reesecoffeecleveland','','','2015-07-29 22:26:37','2015-07-29 22:26:37','',119,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg',0,'attachment','image/jpeg',0),(123,1,'2015-07-29 22:30:32','2015-07-29 22:30:32','This Monday we are recapping on last weeks episodes, but in the future I would like to answer all your questions Beloit. Im also discussing the episode title to feature some of my thoughts about the show so far. I Hope you all have a great Monday!\r\n\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\" alt=\"ReeseCoffeeCleveland\" width=\"128\" height=\"192\" class=\"alignnone size-full wp-image-122\" />\r\n\r\nTodays Links\r\nKickstarter for The Beloit Podcast\r\n\r\n<a href=\"https://www.facebook.com/pages/Mississippi-Mass-Choir/108207145874797?fref=ts\" target=\"_blank\">Mississippi Mass Choir on Facebook</a>\r\n\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com/page/1/size/25#5rLlFYPuEley93tQ.99</a>','Last week recap & My thoughts about TBP so far','','inherit','closed','open','','119-revision-v1','','','2015-07-29 22:30:32','2015-07-29 22:30:32','',119,'http://thebeloitpod.com/wordpress1/index.php/2015/07/29/119-revision-v1/',0,'revision','',0),(124,1,'2015-07-30 00:46:46','2015-07-30 00:46:46','Today we sat down with Rod Gottfredson at Austin\'s Barber Shop in downtown Beloit. We spoke about his time here in our city and we discussed just how he sheds some light on the history of our community in a variety of ways. \r\n\r\n[caption id=\"attachment_125\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/RodGottfredson-300x199.jpg\" alt=\"Rod Gottfredson\" width=\"300\" height=\"199\" class=\"size-medium wp-image-125\" /> Rod Gottfredson[/caption]\r\n\r\nRod Gottfredson\r\n\r\nTodays Links\r\n\r\n<a href=\"https://www.facebook.com/Downtownbeloitbarber?fref=ts\" target=\"_blank\">Austin\'s Barber Shop on Facebook</a>\r\n<a href=\"http://rodthebarber.com\">Rods Website - Austins Barber Shop</a>\r\n<a href=\"https://beloitlibrary.org/event/reminisce-beloit-pictorial-journey-through-time-0\">Last months Reminisce Beloit pictorial journey through time</a>\r\n<a href=\"http://thebeloitpod.libsyn.com\">Read more at http://thebeloitpod.libsyn.com/#vzjtQG0wzYoAoWKD.99</a>','Rod Gottfredsen- Austins Barber Shop','','publish','closed','open','','rod-gottfredsen-austins-barber-shop','','','2015-07-30 00:46:46','2015-07-30 00:46:46','',0,'http://thebeloitpod.com/wordpress1/?p=124',0,'post','',0),(125,1,'2015-07-30 00:37:33','2015-07-30 00:37:33','','RodGottfredson','Rod Gottfredson','inherit','closed','open','','rodgottfredson','','','2015-07-30 00:37:49','2015-07-30 00:37:49','',124,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/RodGottfredson.jpg',0,'attachment','image/jpeg',0),(126,1,'2015-07-30 00:46:46','2015-07-30 00:46:46','Today we sat down with Rod Gottfredson at Austin\'s Barber Shop in downtown Beloit. We spoke about his time here in our city and we discussed just how he sheds some light on the history of our community in a variety of ways. \r\n\r\n[caption id=\"attachment_125\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/RodGottfredson-300x199.jpg\" alt=\"Rod Gottfredson\" width=\"300\" height=\"199\" class=\"size-medium wp-image-125\" /> Rod Gottfredson[/caption]\r\n\r\nRod Gottfredson\r\n\r\nTodays Links\r\n\r\n<a href=\"https://www.facebook.com/Downtownbeloitbarber?fref=ts\" target=\"_blank\">Austin\'s Barber Shop on Facebook</a>\r\n<a href=\"http://rodthebarber.com\">Rods Website - Austins Barber Shop</a>\r\n<a href=\"https://beloitlibrary.org/event/reminisce-beloit-pictorial-journey-through-time-0\">Last months Reminisce Beloit pictorial journey through time</a>\r\n<a href=\"http://thebeloitpod.libsyn.com\">Read more at http://thebeloitpod.libsyn.com/#vzjtQG0wzYoAoWKD.99</a>','Rod Gottfredsen- Austins Barber Shop','','inherit','closed','open','','124-revision-v1','','','2015-07-30 00:46:46','2015-07-30 00:46:46','',124,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/124-revision-v1/',0,'revision','',0),(127,1,'2015-07-30 01:00:48','2015-07-30 01:00:48','I spoke with Beloit native Matt Pickart on today\'s episode of The Beloit Podcast.This last week he celebrated turning 30. Matt and his family have an extensive history as musicians as well as history in our community. Matt has also met with other Beloit natives all over the world. Lets welcome Matt to The Beloit Podcast! \r\n\r\n[caption id=\"attachment_128\" align=\"alignnone\" width=\"183\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/MattPickart.jpg\" alt=\"Matt Pickart \" width=\"183\" height=\"275\" class=\"size-full wp-image-128\" /> Matt Pickart [/caption]\r\n\r\nTodays Links\r\n\r\n<a href=\"https://www.youtube.com/user/pickartviolin\" target=\"_blank\">Matt Pickart - YouTube Channel</a>\r\n<a href=\"http://www.beloitdailynews.com/news/illinois/performing-to-celebrate-his-birthday/article_b1709da4-16a8-11e5-b767-67c4e66bdca0.html\" target=\"_blank\">Matt in the Beloit Daily News</a>','Matt Pickart','','publish','closed','open','','matt-pickart','','','2015-07-30 01:02:49','2015-07-30 01:02:49','',0,'http://thebeloitpod.com/wordpress1/?p=127',0,'post','',0),(128,1,'2015-07-30 00:48:59','2015-07-30 00:48:59','','MattPickart','Matt Pickart ','inherit','closed','open','','mattpickart','','','2015-07-30 00:49:52','2015-07-30 00:49:52','',127,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/MattPickart.jpg',0,'attachment','image/jpeg',0),(129,1,'2015-07-30 01:00:48','2015-07-30 01:00:48','I spoke with Beloit native Matt Pickart on today\'s episode of The Beloit Podcast.This last week he celebrated turning 30. Matt and his family have an extensive history as musicians and in our community. Matt has also met with other Beloit natives all over the world. \r\n\r\n[caption id=\"attachment_128\" align=\"alignnone\" width=\"183\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/MattPickart.jpg\" alt=\"Matt Pickart \" width=\"183\" height=\"275\" class=\"size-full wp-image-128\" /> Matt Pickart [/caption]\r\n\r\nTodays Links\r\n\r\n<a href=\"https://www.youtube.com/user/pickartviolin\" target=\"_blank\">Matt Pickart - YouTube Channel</a>\r\n<a href=\"http://www.beloitdailynews.com/news/illinois/performing-to-celebrate-his-birthday/article_b1709da4-16a8-11e5-b767-67c4e66bdca0.html\" target=\"_blank\">Matt in the Beloit Daily News</a>','Matt Pickart','','inherit','closed','open','','127-revision-v1','','','2015-07-30 01:00:48','2015-07-30 01:00:48','',127,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/127-revision-v1/',0,'revision','',0),(130,1,'2015-07-30 01:02:13','2015-07-30 01:02:13','I spoke with Beloit native Matt Pickart on today\'s episode of The Beloit Podcast.This last week he celebrated turning 30. Matt and his family have an extensive history as musicians as well as in our community. Matt has also met with other Beloit natives all over the world. \n\n[caption id=\"attachment_128\" align=\"alignnone\" width=\"183\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/MattPickart.jpg\" alt=\"Matt Pickart \" width=\"183\" height=\"275\" class=\"size-full wp-image-128\" /> Matt Pickart [/caption]\n\nTodays Links\n\n<a href=\"https://www.youtube.com/user/pickartviolin\" target=\"_blank\">Matt Pickart - YouTube Channel</a>\n<a href=\"http://www.beloitdailynews.com/news/illinois/performing-to-celebrate-his-birthday/article_b1709da4-16a8-11e5-b767-67c4e66bdca0.html\" target=\"_blank\">Matt in the Beloit Daily News</a>','Matt Pickart','','inherit','closed','open','','127-autosave-v1','','','2015-07-30 01:02:13','2015-07-30 01:02:13','',127,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/127-autosave-v1/',0,'revision','',0),(131,1,'2015-07-30 01:02:49','2015-07-30 01:02:49','I spoke with Beloit native Matt Pickart on today\'s episode of The Beloit Podcast.This last week he celebrated turning 30. Matt and his family have an extensive history as musicians as well as history in our community. Matt has also met with other Beloit natives all over the world. Lets welcome Matt to The Beloit Podcast! \r\n\r\n[caption id=\"attachment_128\" align=\"alignnone\" width=\"183\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/MattPickart.jpg\" alt=\"Matt Pickart \" width=\"183\" height=\"275\" class=\"size-full wp-image-128\" /> Matt Pickart [/caption]\r\n\r\nTodays Links\r\n\r\n<a href=\"https://www.youtube.com/user/pickartviolin\" target=\"_blank\">Matt Pickart - YouTube Channel</a>\r\n<a href=\"http://www.beloitdailynews.com/news/illinois/performing-to-celebrate-his-birthday/article_b1709da4-16a8-11e5-b767-67c4e66bdca0.html\" target=\"_blank\">Matt in the Beloit Daily News</a>','Matt Pickart','','inherit','closed','open','','127-revision-v1','','','2015-07-30 01:02:49','2015-07-30 01:02:49','',127,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/127-revision-v1/',0,'revision','',0),(132,1,'2015-07-30 01:12:02','2015-07-30 01:12:02','Today I spoke with Jack Kennedy who grew up in Beloit. As a child Jack could be found often at the Pop House among other places from Beloit history. Jack shares some history about our city from his perspective as it relates to him. \r\n[caption id=\"attachment_133\" align=\"alignnone\" width=\"296\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/JackKennedy.jpg\" alt=\"Jack Kennedy\" width=\"296\" height=\"296\" class=\"size-full wp-image-133\" /> Jack Kennedy[/caption]\r\n\r\nTodays links\r\n\r\n<a href=\"https://www.youtube.com/watch?v=UP6iSV7NMJg\" target=\"_blank\">Beloit Club Pop House- Youtube channel</a>\r\n<a href=\"http://pophouse.accardiweb.com\" target=\"_blank\">pophouse.accardiweb.com</a>\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com/#8lEkEy70dpS68GAa.99</a>','Jack Kennedy','','publish','closed','open','','jack-kennedy','','','2015-07-30 01:12:02','2015-07-30 01:12:02','',0,'http://thebeloitpod.com/wordpress1/?p=132',0,'post','',0),(133,1,'2015-07-30 01:08:03','2015-07-30 01:08:03','','JackKennedy','Jack Kennedy','inherit','closed','open','','jackkennedy','','','2015-07-30 01:08:17','2015-07-30 01:08:17','',132,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/JackKennedy.jpg',0,'attachment','image/jpeg',0),(134,1,'2015-07-30 01:12:02','2015-07-30 01:12:02','Today I spoke with Jack Kennedy who grew up in Beloit. As a child Jack could be found often at the Pop House among other places from Beloit history. Jack shares some history about our city from his perspective as it relates to him. \r\n[caption id=\"attachment_133\" align=\"alignnone\" width=\"296\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/JackKennedy.jpg\" alt=\"Jack Kennedy\" width=\"296\" height=\"296\" class=\"size-full wp-image-133\" /> Jack Kennedy[/caption]\r\n\r\nTodays links\r\n\r\n<a href=\"https://www.youtube.com/watch?v=UP6iSV7NMJg\" target=\"_blank\">Beloit Club Pop House- Youtube channel</a>\r\n<a href=\"http://pophouse.accardiweb.com\" target=\"_blank\">pophouse.accardiweb.com</a>\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com/#8lEkEy70dpS68GAa.99</a>','Jack Kennedy','','inherit','closed','open','','132-revision-v1','','','2015-07-30 01:12:02','2015-07-30 01:12:02','',132,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/132-revision-v1/',0,'revision','',0),(135,1,'2015-07-30 01:21:33','2015-07-30 01:21:33','On this episode were talking to Rich Porter, Beloit recording artist and life-long community member. You can find his work all over the web. It was great to get Rich on for an episode to share some insights on Beloit from another perspective. \r\n\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/R.Porter-169x300.jpg\" alt=\"R.Porter\" width=\"169\" height=\"300\" class=\"alignnone size-medium wp-image-114\" />\r\n\r\n<a href=\"https://www.reverbnation.com/porter1342\" target=\"_blank\">Rich Porter on ReverbNation</a>\r\n<a href=\"http://richporteraayyyooo.yolasite.com\" target=\"_blank\">richporteraayyyooo.yolasite.com</a>\r\n<a href=\"https://twitter.com/porter1342\" target=\"_blank\">Rich @ twitter</a>\r\n<a href=\"https://www.facebook.com/ladolphlius.richardson?fref=ts\" target=\"_blank\">Rich @ Facebook</a>\r\n<a href=\"http://thebeloitpod.libsyn.com/page/2/size/25\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Rich Porter','','inherit','closed','open','','111-revision-v1','','','2015-07-30 01:21:33','2015-07-30 01:21:33','',111,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/111-revision-v1/',0,'revision','',0),(136,1,'2015-07-30 01:35:28','2015-07-30 01:35:28','On this mondays show I am recapping on what we have done so far. I also discuss the power of our communties within social sites like Facebook. Have a great Monday!\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\" alt=\"ReeseCoffeeCleveland\" width=\"128\" height=\"192\" class=\"alignnone size-full wp-image-122\" /></a>\r\nTodays Links\r\n\r\n<a href=\"http://lifehacker.com/facebook-groups-are-underrated-heres-how-to-make-them-1660643691\" target=\"_blank\">lifehacker.com/facebook-groups-are-underrated-heres-how-to-make-them</a>\r\n<a href=\"https://www.kickstarter.com/projects/1709001251/the-beloit-podcast?ref=nav_search\" target=\"_blank\">Kickstarter for the show- all donations go right back into the shows production</a>\r\nLifehacker.com/facebook-groups-are-underrated-heres-how-to-make-them-awesome','My thoughts on TBP, Beloit 2.0, and the people power behind our Facebook communities','','publish','closed','open','','my-thoughts-on-tbp-beloit-2-0-and-the-people-power-behind-our-facebook-communities','','','2015-07-30 01:35:28','2015-07-30 01:35:28','',0,'http://thebeloitpod.com/wordpress1/?p=136',0,'post','',0),(137,1,'2015-07-30 01:35:28','2015-07-30 01:35:28','On this mondays show I am recapping on what we have done so far. I also discuss the power of our communties within social sites like Facebook. Have a great Monday!\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\" alt=\"ReeseCoffeeCleveland\" width=\"128\" height=\"192\" class=\"alignnone size-full wp-image-122\" /></a>\r\nTodays Links\r\n\r\n<a href=\"http://lifehacker.com/facebook-groups-are-underrated-heres-how-to-make-them-1660643691\" target=\"_blank\">lifehacker.com/facebook-groups-are-underrated-heres-how-to-make-them</a>\r\n<a href=\"https://www.kickstarter.com/projects/1709001251/the-beloit-podcast?ref=nav_search\" target=\"_blank\">Kickstarter for the show- all donations go right back into the shows production</a>\r\nLifehacker.com/facebook-groups-are-underrated-heres-how-to-make-them-awesome','My thoughts on TBP, Beloit 2.0, and the people power behind our Facebook communities','','inherit','closed','open','','136-revision-v1','','','2015-07-30 01:35:28','2015-07-30 01:35:28','',136,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/136-revision-v1/',0,'revision','',0),(138,1,'2015-07-30 01:46:30','2015-07-30 01:46:30','On this episode of The Beloit Podcast we met with Jonna Kay also known as Jonna The Happy Medium. Jonna is a long-time member of our community, a business owner, and pyschic-medium. This was our 1st TBP show with an audience, which was also really fun. We talk to Jonna about her time in our community and we have a fun time doing so!\r\n\r\nAlso make sure to click on today\'s bonus material, right under the \"download\" button. In the Bonus section we hear Jonna do some readings for us, which was more than interesting!\r\n\r\n[caption id=\"attachment_139\" align=\"alignnone\" width=\"261\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/JonnaKay-261x300.jpg\" alt=\"Jonna Kay\" width=\"261\" height=\"300\" class=\"size-medium wp-image-139\" /> Jonna Kay[/caption]\r\n\r\nTodays Links\r\n\r\n<a href=\"http://www.jonnathehappymedium.com\" target=\"_blank\">jonnathehappymedium.com</a>\r\n<a href=\"https://www.facebook.com/MediumJonnaKay?fref=ts\" target=\"_blank\">Jonna The Happy Medium on Facebook</a>\r\n<a href=\"https://www.youtube.com/channel/UC5YrvogrCIa2KwUWDE3ANcw\" target=\"_blank\">Jonna The Happy Medium on Youtube</a>\r\n<a href=\"https://www.youtube.com/channel/UC8Q4gZ0wz3tau0PFgD7HSrg\" target=\"_blank\">-More from Jonna on Youtube</a>','Jonna Kay','','publish','closed','open','','jonna-kay','','','2015-07-30 01:46:30','2015-07-30 01:46:30','',0,'http://thebeloitpod.com/wordpress1/?p=138',0,'post','',0),(139,1,'2015-07-30 01:43:32','2015-07-30 01:43:32','','JonnaKay','Jonna Kay','inherit','closed','open','','jonnakay','','','2015-07-30 01:43:42','2015-07-30 01:43:42','',138,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/JonnaKay.jpg',0,'attachment','image/jpeg',0),(140,1,'2015-07-30 01:46:30','2015-07-30 01:46:30','On this episode of The Beloit Podcast we met with Jonna Kay also known as Jonna The Happy Medium. Jonna is a long-time member of our community, a business owner, and pyschic-medium. This was our 1st TBP show with an audience, which was also really fun. We talk to Jonna about her time in our community and we have a fun time doing so!\r\n\r\nAlso make sure to click on today\'s bonus material, right under the \"download\" button. In the Bonus section we hear Jonna do some readings for us, which was more than interesting!\r\n\r\n[caption id=\"attachment_139\" align=\"alignnone\" width=\"261\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/JonnaKay-261x300.jpg\" alt=\"Jonna Kay\" width=\"261\" height=\"300\" class=\"size-medium wp-image-139\" /> Jonna Kay[/caption]\r\n\r\nTodays Links\r\n\r\n<a href=\"http://www.jonnathehappymedium.com\" target=\"_blank\">jonnathehappymedium.com</a>\r\n<a href=\"https://www.facebook.com/MediumJonnaKay?fref=ts\" target=\"_blank\">Jonna The Happy Medium on Facebook</a>\r\n<a href=\"https://www.youtube.com/channel/UC5YrvogrCIa2KwUWDE3ANcw\" target=\"_blank\">Jonna The Happy Medium on Youtube</a>\r\n<a href=\"https://www.youtube.com/channel/UC8Q4gZ0wz3tau0PFgD7HSrg\" target=\"_blank\">-More from Jonna on Youtube</a>','Jonna Kay','','inherit','closed','open','','138-revision-v1','','','2015-07-30 01:46:30','2015-07-30 01:46:30','',138,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/138-revision-v1/',0,'revision','',0),(141,1,'2015-07-30 01:54:11','2015-07-30 01:54:11','I spoke with Trace Thayer today on The Beloit Podcast. Trace is a member of our community and also is a recording artist known as Lil Chief. Speaking to Trace was another unique opportunity to gain perspective ,also he was very inspirational.Lets welcome Trace to The Beloit Podcast!\r\n[caption id=\"attachment_142\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/trace-300x300.jpg\" alt=\"Trace Thayer\" width=\"300\" height=\"300\" class=\"size-medium wp-image-142\" /> Trace Thayer[/caption]\r\n\r\nTodays Links\r\n<a href=\"http://I spoke with Trace Thayer today on The Beloit Podcast. Trace is a member of our community and recording artist known as Lil Chief. Speaking to Trace was another unique opportunity to gain perspective ,also he was very inspirational. Trace Todays Links 420kr3w.com LilChief420KR3W- Youtube Channel Lil Chief on Facebook\" target=\"_blank\">420kr3w.com</a>\r\n<a href=\"https://www.youtube.com/user/LilChief420KR3W\" target=\"_blank\">LilChief420KR3W- Youtube Channel</a>\r\n<a href=\"https://www.facebook.com/Lilchief420KR3W?fref=ts\" target=\"_blank\">Lil Chief on Facebook</a>','Trace Thayer','','publish','closed','open','','trace-thayer','','','2015-07-30 01:54:11','2015-07-30 01:54:11','',0,'http://thebeloitpod.com/wordpress1/?p=141',0,'post','',0),(142,1,'2015-07-30 01:50:08','2015-07-30 01:50:08','','trace','Trace Thayer','inherit','closed','open','','trace','','','2015-07-30 01:50:30','2015-07-30 01:50:30','',141,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/trace.jpg',0,'attachment','image/jpeg',0),(143,1,'2015-07-30 01:54:11','2015-07-30 01:54:11','I spoke with Trace Thayer today on The Beloit Podcast. Trace is a member of our community and also is a recording artist known as Lil Chief. Speaking to Trace was another unique opportunity to gain perspective ,also he was very inspirational.Lets welcome Trace to The Beloit Podcast!\r\n[caption id=\"attachment_142\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/trace-300x300.jpg\" alt=\"Trace Thayer\" width=\"300\" height=\"300\" class=\"size-medium wp-image-142\" /> Trace Thayer[/caption]\r\n\r\nTodays Links\r\n<a href=\"http://I spoke with Trace Thayer today on The Beloit Podcast. Trace is a member of our community and recording artist known as Lil Chief. Speaking to Trace was another unique opportunity to gain perspective ,also he was very inspirational. Trace Todays Links 420kr3w.com LilChief420KR3W- Youtube Channel Lil Chief on Facebook\" target=\"_blank\">420kr3w.com</a>\r\n<a href=\"https://www.youtube.com/user/LilChief420KR3W\" target=\"_blank\">LilChief420KR3W- Youtube Channel</a>\r\n<a href=\"https://www.facebook.com/Lilchief420KR3W?fref=ts\" target=\"_blank\">Lil Chief on Facebook</a>','Trace Thayer','','inherit','closed','open','','141-revision-v1','','','2015-07-30 01:54:11','2015-07-30 01:54:11','',141,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/141-revision-v1/',0,'revision','',0),(144,1,'2015-07-30 01:59:10','2015-07-30 01:59:10','On today’s episode of The Beloit Podcast I had the opportunity to sit down with Sheila De Forest.Sheila is currently Vice president of city council and Nutrition education Program administer at Rock County UW-extension. She has a considerable history in our community for someone who has not spent her entire life here, and I found her story to be very uplifting. \r\n\r\n[caption id=\"attachment_145\" align=\"alignnone\" width=\"200\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/SheilaDeForest.jpg\" alt=\"Sheila De Forest\" width=\"200\" height=\"280\" class=\"size-full wp-image-145\" /> Sheila De Forest[/caption]\r\nTodays Links\r\n<a href=\"http://www.beloitwi.gov/index.asp?Type=B_BASIC&SEC=%7BC833E327-C02B-4A6A-B4B9-030B58262A07%7D&DE=%7B5B9B24E4-774B-4E25-A15D-BD90C94E2D5D%7D\" target=\"_blank\">www.beloitwi.gov</a>\r\n<a href=\"https://www.facebook.com/pages/Rock-County-UW-Extension/100494480016296\">Rock County UW- Extension</a>\r\n<a href=\"https://www.facebook.com/CityofBeloit\">City of Beloit-Government on Facebook</a>','Sheila De Forest','','publish','closed','open','','sheila-de-forest','','','2015-07-30 02:17:05','2015-07-30 02:17:05','',0,'http://thebeloitpod.com/wordpress1/?p=144',0,'post','',0),(145,1,'2015-07-30 01:56:29','2015-07-30 01:56:29','','SheilaDeForest','Sheila De Forest','inherit','closed','open','','sheiladeforest','','','2015-07-30 01:56:57','2015-07-30 01:56:57','',144,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/SheilaDeForest.jpg',0,'attachment','image/jpeg',0),(146,1,'2015-07-30 01:59:10','2015-07-30 01:59:10','On today’s episode of The Beloit Podcast I had the opportunity to sit down with Sheila De Forest.Sheila is currently Vice president of city council and Nutrition education Program administer at Rock County UW-extension. She has a considerable history in our community for someone who has not spent her entire life here, and I found her story to be very uplifting. \r\n\r\n[caption id=\"attachment_145\" align=\"alignnone\" width=\"200\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/SheilaDeForest.jpg\" alt=\"Sheila De Forest\" width=\"200\" height=\"280\" class=\"size-full wp-image-145\" /> Sheila De Forest[/caption]\r\nTodays Links\r\nhttp://www.beloitwi.gov/index.asp?Type=B_BASIC&SEC=%7BC833E327-C02B-4A6A-B4B9-030B58262A07%7D&DE=%7B5B9B24E4-774B-4E25-A15D-BD90C94E2D5D%7D\r\n<a href=\"https://www.facebook.com/pages/Rock-County-UW-Extension/100494480016296\">Rock County UW- Extension</a>\r\n<a href=\"https://www.facebook.com/CityofBeloit\">City of Beloit-Government on Facebook</a>','Sheila De Forest','','inherit','closed','open','','144-revision-v1','','','2015-07-30 01:59:10','2015-07-30 01:59:10','',144,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/144-revision-v1/',0,'revision','',0),(147,1,'2015-07-30 02:17:05','2015-07-30 02:17:05','On today’s episode of The Beloit Podcast I had the opportunity to sit down with Sheila De Forest.Sheila is currently Vice president of city council and Nutrition education Program administer at Rock County UW-extension. She has a considerable history in our community for someone who has not spent her entire life here, and I found her story to be very uplifting. \r\n\r\n[caption id=\"attachment_145\" align=\"alignnone\" width=\"200\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/SheilaDeForest.jpg\" alt=\"Sheila De Forest\" width=\"200\" height=\"280\" class=\"size-full wp-image-145\" /> Sheila De Forest[/caption]\r\nTodays Links\r\n<a href=\"http://www.beloitwi.gov/index.asp?Type=B_BASIC&SEC=%7BC833E327-C02B-4A6A-B4B9-030B58262A07%7D&DE=%7B5B9B24E4-774B-4E25-A15D-BD90C94E2D5D%7D\" target=\"_blank\">www.beloitwi.gov</a>\r\n<a href=\"https://www.facebook.com/pages/Rock-County-UW-Extension/100494480016296\">Rock County UW- Extension</a>\r\n<a href=\"https://www.facebook.com/CityofBeloit\">City of Beloit-Government on Facebook</a>','Sheila De Forest','','inherit','closed','open','','144-revision-v1','','','2015-07-30 02:17:05','2015-07-30 02:17:05','',144,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/144-revision-v1/',0,'revision','',0),(148,1,'2015-07-30 03:04:40','2015-07-30 03:04:40','On this Friday\'s episode of TBP I am talking about the 4rth of July, our Independence, and a breif history of Emma Goldman. I hope you all have a fun and safe 4rth!\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Emmaplaque.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Emmaplaque-300x200.jpg\" alt=\"Emmaplaque\" width=\"300\" height=\"200\" class=\"alignnone size-medium wp-image-149\" /></a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/EmmaGazebo.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/EmmaGazebo-225x300.jpg\" alt=\"EmmaGazebo\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-150\" /></a>\r\n\r\n\r\nTodays links\r\n\r\n<a href=\"https://www.beloit.edu/museums/publicart/publicsculpt.htm\" target=\"_blank\">www.beloit.edu/museums/publicart</a>\r\n<a href=\"http://www.alexandergray.com/artists/siah-armajani/\" target=\"_blank\">Siah armajani- Bio-alexandergray.com</a>\r\n<a href=\"http://www.lib.berkeley.edu/goldman/\" target=\"_blank\">California-Berkley.edu-Emma Goldman Papers</a>\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Friday @ TBP, 4rth of July and Emma Goldman','','publish','closed','open','','friday-tbp-4rth-of-july-and-emma-goldman','','','2015-07-30 03:04:40','2015-07-30 03:04:40','',0,'http://thebeloitpod.com/wordpress1/?p=148',0,'post','',0),(149,1,'2015-07-30 03:03:58','2015-07-30 03:03:58','','Emmaplaque','','inherit','closed','open','','emmaplaque','','','2015-07-30 03:03:58','2015-07-30 03:03:58','',148,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Emmaplaque.jpg',0,'attachment','image/jpeg',0),(150,1,'2015-07-30 03:04:19','2015-07-30 03:04:19','','EmmaGazebo','','inherit','closed','open','','emmagazebo','','','2015-07-30 03:04:19','2015-07-30 03:04:19','',148,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/EmmaGazebo.jpg',0,'attachment','image/jpeg',0),(151,1,'2015-07-30 03:04:40','2015-07-30 03:04:40','On this Friday\'s episode of TBP I am talking about the 4rth of July, our Independence, and a breif history of Emma Goldman. I hope you all have a fun and safe 4rth!\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Emmaplaque.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Emmaplaque-300x200.jpg\" alt=\"Emmaplaque\" width=\"300\" height=\"200\" class=\"alignnone size-medium wp-image-149\" /></a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/EmmaGazebo.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/EmmaGazebo-225x300.jpg\" alt=\"EmmaGazebo\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-150\" /></a>\r\n\r\n\r\nTodays links\r\n\r\n<a href=\"https://www.beloit.edu/museums/publicart/publicsculpt.htm\" target=\"_blank\">www.beloit.edu/museums/publicart</a>\r\n<a href=\"http://www.alexandergray.com/artists/siah-armajani/\" target=\"_blank\">Siah armajani- Bio-alexandergray.com</a>\r\n<a href=\"http://www.lib.berkeley.edu/goldman/\" target=\"_blank\">California-Berkley.edu-Emma Goldman Papers</a>\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Friday @ TBP, 4rth of July and Emma Goldman','','inherit','closed','open','','148-revision-v1','','','2015-07-30 03:04:40','2015-07-30 03:04:40','',148,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/148-revision-v1/',0,'revision','',0),(152,1,'2015-07-30 03:11:05','2015-07-30 03:11:05','On today\'s episode of The Beloit Podcast I am speaking to Darious Pittman. Darious is a musician and in general a busy guy when it comes to music in Beloit. Like past interviews I knew very little about Darious going into meet him, sitting down with him was both educational and inspiring.\r\n\r\n[caption id=\"attachment_153\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/dariousPittman-300x300.jpg\" alt=\"Darious Pittman\" width=\"300\" height=\"300\" class=\"size-medium wp-image-153\" /> Darious Pittman[/caption]\r\n\r\nToday\'s Links \r\n<a href=\"https://www.youtube.com/user/thepro9174/videos?spfreload=10\" target=\"_blank\">Darious Pittman- Youtube Channel</a>\r\n<a href=\"https://www.facebook.com/pro251\" target=\"_blank\">Pro251 - On Facebook</a>\r\n<a href=\"https://www.facebook.com/pro251\" target=\"_blank\">Pro 251 at reverbnation.com</a>\r\n\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">thebeloitpod.libsyn.com</a>','Darious Pittman','','publish','closed','open','','darious-pittman','','','2015-07-30 03:11:05','2015-07-30 03:11:05','',0,'http://thebeloitpod.com/wordpress1/?p=152',0,'post','',0),(153,1,'2015-07-30 03:07:32','2015-07-30 03:07:32','','dariousPittman','Darious Pittman','inherit','closed','open','','dariouspittman','','','2015-07-30 03:07:46','2015-07-30 03:07:46','',152,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/dariousPittman.jpg',0,'attachment','image/jpeg',0),(154,1,'2015-07-30 03:11:05','2015-07-30 03:11:05','On today\'s episode of The Beloit Podcast I am speaking to Darious Pittman. Darious is a musician and in general a busy guy when it comes to music in Beloit. Like past interviews I knew very little about Darious going into meet him, sitting down with him was both educational and inspiring.\r\n\r\n[caption id=\"attachment_153\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/dariousPittman-300x300.jpg\" alt=\"Darious Pittman\" width=\"300\" height=\"300\" class=\"size-medium wp-image-153\" /> Darious Pittman[/caption]\r\n\r\nToday\'s Links \r\n<a href=\"https://www.youtube.com/user/thepro9174/videos?spfreload=10\" target=\"_blank\">Darious Pittman- Youtube Channel</a>\r\n<a href=\"https://www.facebook.com/pro251\" target=\"_blank\">Pro251 - On Facebook</a>\r\n<a href=\"https://www.facebook.com/pro251\" target=\"_blank\">Pro 251 at reverbnation.com</a>\r\n\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">thebeloitpod.libsyn.com</a>','Darious Pittman','','inherit','closed','open','','152-revision-v1','','','2015-07-30 03:11:05','2015-07-30 03:11:05','',152,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/152-revision-v1/',0,'revision','',0),(155,1,'2015-07-30 13:12:02','2015-07-30 13:12:02','Everyone has bills to pay! On this episode I am discussing the possible Monetization of the show. After many questions regarding how to pay for The Beloit Podcast I have found a way to meet our bottom line budget needs AND also return money right back to you the listeners. It is all about Beloit here. Join me in this episode as I present the TBP money-bomb and how to become a paid member of the show. \r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/monetization.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/monetization.jpg\" alt=\"monetization\" width=\"225\" height=\"225\" class=\"alignnone size-full wp-image-156\" /></a>\r\n\r\nTodays Links\r\n<a href=\"https://en.wikipedia.org/wiki/Moneybomb\" target=\"_blank\">Moneybomb-Wikipedia</a>','Monetization of The Beloit Podcast','','publish','closed','open','','monetization-of-the-beloit-podcast','','','2015-07-30 13:12:02','2015-07-30 13:12:02','',0,'http://thebeloitpod.com/wordpress1/?p=155',0,'post','',0),(156,1,'2015-07-30 12:48:18','2015-07-30 12:48:18','','monetization','','inherit','closed','open','','monetization','','','2015-07-30 12:48:18','2015-07-30 12:48:18','',155,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/monetization.jpg',0,'attachment','image/jpeg',0),(157,1,'2015-07-30 13:12:02','2015-07-30 13:12:02','Everyone has bills to pay! On this episode I am discussing the possible Monetization of the show. After many questions regarding how to pay for The Beloit Podcast I have found a way to meet our bottom line budget needs AND also return money right back to you the listeners. It is all about Beloit here. Join me in this episode as I present the TBP money-bomb and how to become a paid member of the show. \r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/monetization.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/monetization.jpg\" alt=\"monetization\" width=\"225\" height=\"225\" class=\"alignnone size-full wp-image-156\" /></a>\r\n\r\nTodays Links\r\n<a href=\"https://en.wikipedia.org/wiki/Moneybomb\" target=\"_blank\">Moneybomb-Wikipedia</a>','Monetization of The Beloit Podcast','','inherit','closed','open','','155-revision-v1','','','2015-07-30 13:12:02','2015-07-30 13:12:02','',155,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/155-revision-v1/',0,'revision','',0),(158,1,'2015-07-30 13:15:00','2015-07-30 13:15:00','On this episode I am sharing what can be found on Wikipedia.com if you search for Beloit. I thought this would be a simple opportunity to share a basic history that many of us will recognize. \r\n\r\n[caption id=\"attachment_159\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/BeloitFlag-300x177.jpg\" alt=\"The Beloit Flag\" width=\"300\" height=\"177\" class=\"size-medium wp-image-159\" /> The Beloit Flag[/caption]\r\n\r\nTodays Links\r\n\r\n<a href=\"https://en.wikipedia.org/wiki/Beloit,_Wisconsin\" target=\"_blank\">Wikipedia.org - Beloit,Wisconsin</a>\r\n\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Beloit on Wikipedia','','publish','closed','open','','beloit-on-wikipedia','','','2015-07-30 13:19:37','2015-07-30 13:19:37','',0,'http://thebeloitpod.com/wordpress1/?p=158',0,'post','',0),(159,1,'2015-07-30 13:13:47','2015-07-30 13:13:47','','BeloitFlag','The Beloit Flag','inherit','closed','open','','beloitflag','','','2015-07-30 13:14:05','2015-07-30 13:14:05','',158,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/BeloitFlag.jpg',0,'attachment','image/jpeg',0),(160,1,'2015-07-30 13:15:00','2015-07-30 13:15:00','On this episode I am sharing what can be found on Wikipedia.com if you search for Beloit. I thought this would be a simple opportunity to share a basic history that many of us will recognize. \r\n\r\n[caption id=\"attachment_159\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/BeloitFlag-300x177.jpg\" alt=\"The Beloit Flag\" width=\"300\" height=\"177\" class=\"size-medium wp-image-159\" /> The Beloit Flag[/caption]\r\n\r\nTodays Links\r\n\r\n<a href=\"https://en.wikipedia.org/wiki/Beloit,_Wisconsin\" target=\"_blank\">Wikipedia.org - Beloit,Wisconsin</a>\r\n\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Beloit on Wikipedia','','inherit','closed','open','','158-revision-v1','','','2015-07-30 13:15:00','2015-07-30 13:15:00','',158,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/158-revision-v1/',0,'revision','',0),(161,1,'2015-07-30 13:25:44','2015-07-30 13:25:44','This episode we will pick up where we left off with our last guest Darious Pittman, Adam and Darious are long time friends and musical collaborators, so I thought it would be fitting to have both of them on this week. Adam is a Wisconsin native and long time Beloit Resident. Today we will hear a little about Adams history in Beloit as well as what he is doing currently. Lets welcome Adam to the Beloit Podcast!\r\n\r\n[caption id=\"attachment_162\" align=\"alignnone\" width=\"225\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/AdamGasser-225x300.jpg\" alt=\"Adam Gasser\" width=\"225\" height=\"300\" class=\"size-medium wp-image-162\" /> Adam Gasser[/caption]\r\nTodays Links\r\n\r\n<a href=\"https://www.reverbnation.com/Antigravity815608\" target=\"_blank\">reverbnation.com- Antigravity</a>\r\n<a href=\"https://www.reverbnation.com/earthtoclark\" target=\"_blank\">reverbnation.com- Earth to Clark</a>\r\n<a href=\"https://www.facebook.com/pages/Clark-Manor-Beloit-Wi/786252488161047?fref=ts\" target=\"_blank\">Clark Manor/ Beloit,Wi- Facebook</a>\r\n<a href=\"https://www.youtube.com/channel/UCoWwnjEqtD_fg6q0VeHl79Q\" target=\"_blank\">Earth to Clark - Youtube</a>\r\n<a href=\"https://www.youtube.com/channel/UCoWwnjEqtD_fg6q0VeHl79Q\" target=\"_blank\">Earth to Clark- Soundcloud.com</a>','Adam Gasser','','publish','closed','open','','adam-gasser','','','2015-07-30 13:25:44','2015-07-30 13:25:44','',0,'http://thebeloitpod.com/wordpress1/?p=161',0,'post','',0),(162,1,'2015-07-30 13:21:54','2015-07-30 13:21:54','','AdamGasser','Adam Gasser','inherit','closed','open','','adamgasser','','','2015-08-04 03:39:38','2015-08-04 03:39:38','',161,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/AdamGasser.jpg',2,'attachment','image/jpeg',0),(163,1,'2015-07-30 13:25:44','2015-07-30 13:25:44','This episode we will pick up where we left off with our last guest Darious Pittman, Adam and Darious are long time friends and musical collaborators, so I thought it would be fitting to have both of them on this week. Adam is a Wisconsin native and long time Beloit Resident. Today we will hear a little about Adams history in Beloit as well as what he is doing currently. Lets welcome Adam to the Beloit Podcast!\r\n\r\n[caption id=\"attachment_162\" align=\"alignnone\" width=\"225\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/AdamGasser-225x300.jpg\" alt=\"Adam Gasser\" width=\"225\" height=\"300\" class=\"size-medium wp-image-162\" /> Adam Gasser[/caption]\r\nTodays Links\r\n\r\n<a href=\"https://www.reverbnation.com/Antigravity815608\" target=\"_blank\">reverbnation.com- Antigravity</a>\r\n<a href=\"https://www.reverbnation.com/earthtoclark\" target=\"_blank\">reverbnation.com- Earth to Clark</a>\r\n<a href=\"https://www.facebook.com/pages/Clark-Manor-Beloit-Wi/786252488161047?fref=ts\" target=\"_blank\">Clark Manor/ Beloit,Wi- Facebook</a>\r\n<a href=\"https://www.youtube.com/channel/UCoWwnjEqtD_fg6q0VeHl79Q\" target=\"_blank\">Earth to Clark - Youtube</a>\r\n<a href=\"https://www.youtube.com/channel/UCoWwnjEqtD_fg6q0VeHl79Q\" target=\"_blank\">Earth to Clark- Soundcloud.com</a>','Adam Gasser','','inherit','closed','open','','161-revision-v1','','','2015-07-30 13:25:44','2015-07-30 13:25:44','',161,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/161-revision-v1/',0,'revision','',0),(164,1,'2015-07-30 13:31:53','2015-07-30 13:31:53','This episode is another one for the academics. I am reading from some links about Beloit\'s early Big Hill Park from 1900 to the 1930s. I share how some of Beloit\'s early college students, and other citizens ,would venture to the \"Big Hill\" for a variety of events and occasions. I also discuss a little about the early ski slope and its role at the park. \r\n\r\n[caption id=\"attachment_165\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/bighill-300x233.jpg\" alt=\" Big Hill Park\" width=\"300\" height=\"233\" class=\"size-medium wp-image-165\" /> Big Hill Park[/caption]\r\n\r\nTodays Links\r\n<a href=\"http://rockcountyhistory.tumblr.com/post/119544359387/the-big-hill-ski-jump-in-beloit-wisconsin-circa\" target=\"_blank\">rockcountyhistory.tumblr.com-The Image above</a>\r\n<a href=\"http://www.beloitwi.gov/index.asp?Type=B_BASIC&SEC=%7BAB43EB66-2B87-4584-A63E-E71A0625094A%7D&DE=%7B264CBD29-8067-49BD-8994-57535D7B66E2%7D\" target=\"_blank\">www.beloitwi.gov-Big Hill Park information</a>\r\n<a href=\"https://en.wikipedia.org/wiki/Calvin_Coolidge\" target=\"_blank\">wikipedia.org/wiki/Calvin_Coolidge</a>\r\n<a href=\"http://www.beloitwi.gov/index.asp?Type=B_BASIC&SEC=%7BAB43EB66-2B87-4584-A63E-E71A0625094A%7D&DE=%7B264CBD29-8067-49BD-8994-57535D7B66E2%7D\" target=\"_blank\">Fridays with Fred: an album of 1920s-era Beloit-www.beloit.edu</a>\r\n<a href=\"https://www.beloit.edu/campus/news/?story_id=302443\" target=\"_blank\">FRIDAYS WITH FRED: beyond the bubble with Big Hill Park-ww.beloit.edu</a>\r\n<a href=\"http://www.skisprungschanzen.com/EN/Ski+Jumps/USA-United+States/WI-Wisconsin/Beloit/0701/\" target=\"_blank\">www.skisprungschanzen.com-WI-Wisconsin/Beloit</a>\r\n<a href=\"https://www.facebook.com/pages/Big-Hill-Park/139649176070224?fref=ts\" target=\"_blank\">Big Hill Park on Facebook</a>','A reading on early Big Hill Park','','publish','closed','open','','a-reading-on-early-big-hill-park','','','2015-07-30 13:32:21','2015-07-30 13:32:21','',0,'http://thebeloitpod.com/wordpress1/?p=164',0,'post','',0),(165,1,'2015-07-30 13:27:24','2015-07-30 13:27:24','','bighill',' Big Hill Park','inherit','closed','open','','bighill','','','2015-07-30 13:28:08','2015-07-30 13:28:08','',164,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/bighill.jpg',0,'attachment','image/jpeg',0),(166,1,'2015-07-30 13:31:53','2015-07-30 13:31:53','This episode is another one for the academics. I am reading from some links about Beloit\'s early Big Hill Park from 1900 to the 1930s. I share how some of Beloit\'s early college students, and other citizens ,would venture to the \"Big Hill\" for a variety of events and occasions. I also discuss a little about the early ski slope and its role at the park. \r\n\r\n[caption id=\"attachment_165\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/bighill-300x233.jpg\" alt=\" Big Hill Park\" width=\"300\" height=\"233\" class=\"size-medium wp-image-165\" /> Big Hill Park[/caption]\r\n\r\nTodays Links\r\n<a href=\"http://rockcountyhistory.tumblr.com/post/119544359387/the-big-hill-ski-jump-in-beloit-wisconsin-circa\" target=\"_blank\">rockcountyhistory.tumblr.com-The Image above</a>\r\n<a href=\"http://www.beloitwi.gov/index.asp?Type=B_BASIC&SEC=%7BAB43EB66-2B87-4584-A63E-E71A0625094A%7D&DE=%7B264CBD29-8067-49BD-8994-57535D7B66E2%7D\" target=\"_blank\">www.beloitwi.gov-Big Hill Park information</a>\r\n<a href=\"https://en.wikipedia.org/wiki/Calvin_Coolidge\" target=\"_blank\">wikipedia.org/wiki/Calvin_Coolidge</a>\r\n<a href=\"http://www.beloitwi.gov/index.asp?Type=B_BASIC&SEC=%7BAB43EB66-2B87-4584-A63E-E71A0625094A%7D&DE=%7B264CBD29-8067-49BD-8994-57535D7B66E2%7D\" target=\"_blank\">Fridays with Fred: an album of 1920s-era Beloit-www.beloit.edu</a>\r\n<a href=\"https://www.beloit.edu/campus/news/?story_id=302443\" target=\"_blank\">FRIDAYS WITH FRED: beyond the bubble with Big Hill Park-ww.beloit.edu</a>\r\n<a href=\"http://www.skisprungschanzen.com/EN/Ski+Jumps/USA-United+States/WI-Wisconsin/Beloit/0701/\" target=\"_blank\">www.skisprungschanzen.com-WI-Wisconsin/Beloit</a>\r\n<a href=\"https://www.facebook.com/pages/Big-Hill-Park/139649176070224?fref=ts\" target=\"_blank\">Big Hill Park on Facebook</a>','A reading on early Big Hill Park','','inherit','closed','open','','164-revision-v1','','','2015-07-30 13:31:53','2015-07-30 13:31:53','',164,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/164-revision-v1/',0,'revision','',0),(167,1,'2015-07-30 13:49:26','2015-07-30 13:49:26','Today I spoke with Dorothy Davis of Candy Rain Crafts. Dorothy is a former resident of Beloit currently living in Tennessee. We get to here about Dorothy\'s history in our community as well as what she is currently doing with her online craft business.\r\n\r\n[caption id=\"attachment_168\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/DorothyDavis-300x300.jpg\" alt=\"Dorothy Davis\" width=\"300\" height=\"300\" class=\"size-medium wp-image-168\" /> Dorothy Davis[/caption] \r\n\r\nTodays Links \r\n\r\n<a href=\"https://www.facebook.com/candyrain.crafts?fref=ts\" target=\"_blank\">Candy Rain Crafts on Facebook</a>','Dorothy Davis','','publish','closed','open','','dorothy-davis','','','2015-07-30 13:49:26','2015-07-30 13:49:26','',0,'http://thebeloitpod.com/wordpress1/?p=167',0,'post','',0),(168,1,'2015-07-30 13:48:14','2015-07-30 13:48:14','','DorothyDavis','Dorothy Davis','inherit','closed','open','','dorothydavis','','','2015-08-04 03:39:38','2015-08-04 03:39:38','',167,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/DorothyDavis.jpg',0,'attachment','image/jpeg',0),(169,1,'2015-07-30 13:49:26','2015-07-30 13:49:26','Today I spoke with Dorothy Davis of Candy Rain Crafts. Dorothy is a former resident of Beloit currently living in Tennessee. We get to here about Dorothy\'s history in our community as well as what she is currently doing with her online craft business.\r\n\r\n[caption id=\"attachment_168\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/DorothyDavis-300x300.jpg\" alt=\"Dorothy Davis\" width=\"300\" height=\"300\" class=\"size-medium wp-image-168\" /> Dorothy Davis[/caption] \r\n\r\nTodays Links \r\n\r\n<a href=\"https://www.facebook.com/candyrain.crafts?fref=ts\" target=\"_blank\">Candy Rain Crafts on Facebook</a>','Dorothy Davis','','inherit','closed','open','','167-revision-v1','','','2015-07-30 13:49:26','2015-07-30 13:49:26','',167,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/167-revision-v1/',0,'revision','',0),(170,1,'2015-07-30 13:54:26','2015-07-30 13:54:26','The last few days we have seen some unique storms. As a father of four I know I have to be prepared for the worst weather events that can occur in our area. We can get very severe storms, extreme temperatures, flooding, tornadoes etc. The list of possible extreme weather events we face here in Beloit are numerous. Today I share a historical look at the NMSZ and it\'s previous impact on the area, and also how it might impact us in the near or distant future. \r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/250px-New_Madrid_Erdbeben.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/250px-New_Madrid_Erdbeben.jpg\" alt=\"250px-New_Madrid_Erdbeben\" width=\"250\" height=\"179\" class=\"alignnone size-full wp-image-171\" /></a>\r\n\r\nTodays Links\r\n\r\n<a href=\"https://en.wikipedia.org/wiki/New_Madrid_Seismic_Zone\" target=\"_blank\">Wikipedia- New Madrid Seismic Zone</a>\r\n<a href=\"http://m.beloitdailynews.com/mobile/beloit-daily-news---monday-december/article_c487d67c-0a5c-52a1-9a25-e705fdb59873.html\" target=\"_blank\">beloitdailynews.com- 1996 Big quake in central U.S. predicted within 15 years</a>\r\n<a href=\"http://www.beloitdailynews.com/news/study-new-madrid-fault-zone-alive-active/article_e5f7c0d8-8519-11e3-b501-001a4bcf887a.html\" target=\"_blank\">beloitdailynews.com- Study: New Madrid fault zone alive, active (2014)</a>\r\n<a href=\"http://earthquake.usgs.gov/earthquakes/states/wisconsin/history.php\" target=\"_blank\">Wisconsin Earthquake History -USGS</a>\r\n<a href=\"http://www.weather.com/science/news/thanks-active-new-madrid-fault-zone-midwest-earthquake-risk-still-looms-20140124\" target=\"_blank\">Thanks to Active New Madrid Fault Zone, Midwest Earthquake Risk Still Looms- Weather.com</a>\r\n ','The New Madrid Seismic Zone and Beloit','','publish','closed','open','','the-new-madrid-seismic-zone-and-beloit','','','2015-07-30 13:54:26','2015-07-30 13:54:26','',0,'http://thebeloitpod.com/wordpress1/?p=170',0,'post','',0),(171,1,'2015-07-30 13:52:00','2015-07-30 13:52:00','','250px-New_Madrid_Erdbeben','','inherit','closed','open','','250px-new_madrid_erdbeben','','','2015-07-30 13:52:00','2015-07-30 13:52:00','',170,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/250px-New_Madrid_Erdbeben.jpg',0,'attachment','image/jpeg',0),(172,1,'2015-07-30 13:54:26','2015-07-30 13:54:26','The last few days we have seen some unique storms. As a father of four I know I have to be prepared for the worst weather events that can occur in our area. We can get very severe storms, extreme temperatures, flooding, tornadoes etc. The list of possible extreme weather events we face here in Beloit are numerous. Today I share a historical look at the NMSZ and it\'s previous impact on the area, and also how it might impact us in the near or distant future. \r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/250px-New_Madrid_Erdbeben.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/250px-New_Madrid_Erdbeben.jpg\" alt=\"250px-New_Madrid_Erdbeben\" width=\"250\" height=\"179\" class=\"alignnone size-full wp-image-171\" /></a>\r\n\r\nTodays Links\r\n\r\n<a href=\"https://en.wikipedia.org/wiki/New_Madrid_Seismic_Zone\" target=\"_blank\">Wikipedia- New Madrid Seismic Zone</a>\r\n<a href=\"http://m.beloitdailynews.com/mobile/beloit-daily-news---monday-december/article_c487d67c-0a5c-52a1-9a25-e705fdb59873.html\" target=\"_blank\">beloitdailynews.com- 1996 Big quake in central U.S. predicted within 15 years</a>\r\n<a href=\"http://www.beloitdailynews.com/news/study-new-madrid-fault-zone-alive-active/article_e5f7c0d8-8519-11e3-b501-001a4bcf887a.html\" target=\"_blank\">beloitdailynews.com- Study: New Madrid fault zone alive, active (2014)</a>\r\n<a href=\"http://earthquake.usgs.gov/earthquakes/states/wisconsin/history.php\" target=\"_blank\">Wisconsin Earthquake History -USGS</a>\r\n<a href=\"http://www.weather.com/science/news/thanks-active-new-madrid-fault-zone-midwest-earthquake-risk-still-looms-20140124\" target=\"_blank\">Thanks to Active New Madrid Fault Zone, Midwest Earthquake Risk Still Looms- Weather.com</a>\r\n ','The New Madrid Seismic Zone and Beloit','','inherit','closed','open','','170-revision-v1','','','2015-07-30 13:54:26','2015-07-30 13:54:26','',170,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/170-revision-v1/',0,'revision','',0),(173,1,'2015-07-30 13:57:18','2015-07-30 13:57:18','Today I am sitting down for another interview at Bushel and Peck in downtown Beloit, with Miss Beloit 2015 Kylie Thompson. Kylie is a life-long member of our community. Also I brought my daughter Lydia who wanted to ask Miss Beloit a question. Let\'s see how she does. \r\n\r\n[caption id=\"attachment_174\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/KylieThompson-300x300.jpg\" alt=\"Kylie Thompson\" width=\"300\" height=\"300\" class=\"size-medium wp-image-174\" /> Kylie Thompson[/caption]\r\n\r\nTodays Links\r\n<a href=\"https://missbeloit2015.wordpress.com/2015/07/12/nomakeupselfie/\" target=\"_blank\">Miss Beloit 2015\'s Blog @ Wordpress.com</a>\r\n<a href=\"https://www.facebook.com/missbeloit2015?fref=ts\" target=\"_blank\">Miss Beloit 2015 @ Facebook</a>','Kylie Thompson','','publish','closed','open','','kylie-thompson','','','2015-07-30 13:57:18','2015-07-30 13:57:18','',0,'http://thebeloitpod.com/wordpress1/?p=173',0,'post','',0),(174,1,'2015-07-30 13:55:49','2015-07-30 13:55:49','','KylieThompson','Kylie Thompson','inherit','closed','open','','kyliethompson','','','2015-07-30 13:55:57','2015-07-30 13:55:57','',173,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/KylieThompson.jpg',0,'attachment','image/jpeg',0),(175,1,'2015-07-30 13:57:18','2015-07-30 13:57:18','Today I am sitting down for another interview at Bushel and Peck in downtown Beloit, with Miss Beloit 2015 Kylie Thompson. Kylie is a life-long member of our community. Also I brought my daughter Lydia who wanted to ask Miss Beloit a question. Let\'s see how she does. \r\n\r\n[caption id=\"attachment_174\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/KylieThompson-300x300.jpg\" alt=\"Kylie Thompson\" width=\"300\" height=\"300\" class=\"size-medium wp-image-174\" /> Kylie Thompson[/caption]\r\n\r\nTodays Links\r\n<a href=\"https://missbeloit2015.wordpress.com/2015/07/12/nomakeupselfie/\" target=\"_blank\">Miss Beloit 2015\'s Blog @ Wordpress.com</a>\r\n<a href=\"https://www.facebook.com/missbeloit2015?fref=ts\" target=\"_blank\">Miss Beloit 2015 @ Facebook</a>','Kylie Thompson','','inherit','closed','open','','173-revision-v1','','','2015-07-30 13:57:18','2015-07-30 13:57:18','',173,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/173-revision-v1/',0,'revision','',0),(176,1,'2015-07-30 14:03:58','2015-07-30 14:03:58','Today I am discussing how you can be a guest on the show. Check out the links below for extra details. \r\n\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/TBPguest-300x225.jpg\" alt=\"TBPguest\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-177\" />\r\n\r\nTodays Links\r\n<a href=\"https://attachment.fbsbx.com/file_download.php?id=909371689127484&eid=ASsDYlm0vxMTsyYJTrkUlNxdlvzeu9uuzCZfwuArcDn1cih-OSVvIknDsyuY-4SI8Tk&inline=1&ext=1437054732&hash=ASvpiAE2_KYhzbww\" target=\"_blank\">The Beloit Podcast Question Template</a>','How you can be a guest on TBP','','publish','closed','open','','how-you-can-be-a-guest-on-tbp','','','2015-07-30 14:03:58','2015-07-30 14:03:58','',0,'http://thebeloitpod.com/wordpress1/?p=176',0,'post','',0),(177,1,'2015-07-30 14:02:45','2015-07-30 14:02:45','','TBPguest','','inherit','closed','open','','tbpguest','','','2015-07-30 14:02:45','2015-07-30 14:02:45','',176,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/TBPguest.jpg',0,'attachment','image/jpeg',0),(178,1,'2015-07-30 14:03:58','2015-07-30 14:03:58','Today I am discussing how you can be a guest on the show. Check out the links below for extra details. \r\n\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/TBPguest-300x225.jpg\" alt=\"TBPguest\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-177\" />\r\n\r\nTodays Links\r\n<a href=\"https://attachment.fbsbx.com/file_download.php?id=909371689127484&eid=ASsDYlm0vxMTsyYJTrkUlNxdlvzeu9uuzCZfwuArcDn1cih-OSVvIknDsyuY-4SI8Tk&inline=1&ext=1437054732&hash=ASvpiAE2_KYhzbww\" target=\"_blank\">The Beloit Podcast Question Template</a>','How you can be a guest on TBP','','inherit','closed','open','','176-revision-v1','','','2015-07-30 14:03:58','2015-07-30 14:03:58','',176,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/176-revision-v1/',0,'revision','',0),(179,1,'2015-07-30 14:07:16','2015-07-30 14:07:16','Something different today. I wanted to share why I value things slightly different than other people might. I am sharing what I appreciate about Permaculture and its 8 forms of capital. \r\n\r\n[caption id=\"attachment_180\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Fig_1_Eight_Forms_of_Captial-300x124.png\" alt=\"8 Forms of capital diagram \" width=\"300\" height=\"124\" class=\"size-medium wp-image-180\" /> 8 Forms of capital diagram [/caption]\r\n\r\nTodays Links\r\n<a href=\"https://en.wikipedia.org/wiki/Masanobu_Fukuoka\" target=\"_blank\">wikipedia.org-Masanobu Fukuoka</a>\r\n<a href=\"https://en.wikipedia.org/wiki/Masanobu_Fukuoka\" target=\"_blank\">appleseedpermaculture.com/8-forms-of-capital/</a>','Permaculture and the 8 forms of Capital','','publish','closed','open','','permaculture-and-the-8-forms-of-capital','','','2015-07-30 14:07:16','2015-07-30 14:07:16','',0,'http://thebeloitpod.com/wordpress1/?p=179',0,'post','',0),(180,1,'2015-07-30 14:06:26','2015-07-30 14:06:26','','Fig_1_Eight_Forms_of_Captial','8 Forms of capital diagram ','inherit','closed','open','','fig_1_eight_forms_of_captial','','','2015-07-30 14:06:47','2015-07-30 14:06:47','',179,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Fig_1_Eight_Forms_of_Captial.png',0,'attachment','image/png',0),(181,1,'2015-07-30 14:07:16','2015-07-30 14:07:16','Something different today. I wanted to share why I value things slightly different than other people might. I am sharing what I appreciate about Permaculture and its 8 forms of capital. \r\n\r\n[caption id=\"attachment_180\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/Fig_1_Eight_Forms_of_Captial-300x124.png\" alt=\"8 Forms of capital diagram \" width=\"300\" height=\"124\" class=\"size-medium wp-image-180\" /> 8 Forms of capital diagram [/caption]\r\n\r\nTodays Links\r\n<a href=\"https://en.wikipedia.org/wiki/Masanobu_Fukuoka\" target=\"_blank\">wikipedia.org-Masanobu Fukuoka</a>\r\n<a href=\"https://en.wikipedia.org/wiki/Masanobu_Fukuoka\" target=\"_blank\">appleseedpermaculture.com/8-forms-of-capital/</a>','Permaculture and the 8 forms of Capital','','inherit','closed','open','','179-revision-v1','','','2015-07-30 14:07:16','2015-07-30 14:07:16','',179,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/179-revision-v1/',0,'revision','',0),(182,1,'2015-07-30 14:09:04','2015-07-30 14:09:04','On this Monday\'s episode Im talking about the new beloitpod.com and also what I was talking about on friday\'s episode, permaculture and the 8 forms of capital. New episode tomorrow. \r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\" alt=\"ReeseCoffeeCleveland\" width=\"128\" height=\"192\" class=\"alignnone size-full wp-image-122\" /></a>','The new thebeloitpod.com and what was I talking about last Friday?','','publish','closed','open','','the-new-thebeloitpod-com-and-what-was-i-talking-about-last-friday','','','2015-07-30 14:09:04','2015-07-30 14:09:04','',0,'http://thebeloitpod.com/wordpress1/?p=182',0,'post','',0),(183,1,'2015-07-30 14:09:04','2015-07-30 14:09:04','On this Monday\'s episode Im talking about the new beloitpod.com and also what I was talking about on friday\'s episode, permaculture and the 8 forms of capital. New episode tomorrow. \r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/ReeseCoffeeCleveland.jpg\" alt=\"ReeseCoffeeCleveland\" width=\"128\" height=\"192\" class=\"alignnone size-full wp-image-122\" /></a>','The new thebeloitpod.com and what was I talking about last Friday?','','inherit','closed','open','','182-revision-v1','','','2015-07-30 14:09:04','2015-07-30 14:09:04','',182,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/182-revision-v1/',0,'revision','',0),(184,1,'2015-07-30 14:30:06','2015-07-30 14:30:06','Today I am sharing two upcoming events you can find me at. I will be at the Mass Incarceration Forum this saturday and The key to the other side event with Jonna Kay August 22. Listen for all the details!\r\n\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/keytoothersideJonna-300x222.jpg\" alt=\"keytoothersideJonna\" width=\"300\" height=\"222\" class=\"alignnone size-medium wp-image-185\" />\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/travestyinWI-213x300.jpg\" alt=\"travestyinWI\" width=\"213\" height=\"300\" class=\"alignnone size-medium wp-image-186\" />\r\n\r\nTodays Links\r\n<a href=\"https://www.facebook.com/events/1627888850811444/\" target=\"_blank\">Unlocking the other side Event on Facebook</a>\r\n<a href=\"https://www.facebook.com/glitzgobiz\" target=\"_blank\">Glitz & Go LLC on Facebook</a>\r\n<a href=\"https://www.facebook.com/pages/Emmanuel-Baptist-Church-Beloit-Wisconsin/136611463065902\" target=\"_blank\">Emmanuel-Baptist-Church-Beloit-Wisconsin on Facebook</a>\r\n<a href=\"https://www.facebook.com/pages/Emmanuel-Baptist-Church-Beloit-Wisconsin/136611463065902\" target=\"_blank\">Emmanuel Babtist Church on the Web-www.emmanuelfamily.org</a>','2 upcoming events TBP will be covering','','publish','closed','open','','2-upcoming-events-tbp-will-be-covering','','','2015-07-30 14:30:06','2015-07-30 14:30:06','',0,'http://thebeloitpod.com/wordpress1/?p=184',0,'post','',0),(185,1,'2015-07-30 14:25:15','2015-07-30 14:25:15','','keytoothersideJonna','','inherit','closed','open','','keytoothersidejonna','','','2015-07-30 14:25:15','2015-07-30 14:25:15','',184,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/keytoothersideJonna.jpg',0,'attachment','image/jpeg',0),(186,1,'2015-07-30 14:27:49','2015-07-30 14:27:49','','travestyinWI','','inherit','closed','open','','travestyinwi','','','2015-07-30 14:27:49','2015-07-30 14:27:49','',184,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/travestyinWI.jpg',0,'attachment','image/jpeg',0),(187,1,'2015-07-30 14:30:06','2015-07-30 14:30:06','Today I am sharing two upcoming events you can find me at. I will be at the Mass Incarceration Forum this saturday and The key to the other side event with Jonna Kay August 22. Listen for all the details!\r\n\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/keytoothersideJonna-300x222.jpg\" alt=\"keytoothersideJonna\" width=\"300\" height=\"222\" class=\"alignnone size-medium wp-image-185\" />\r\n<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/travestyinWI-213x300.jpg\" alt=\"travestyinWI\" width=\"213\" height=\"300\" class=\"alignnone size-medium wp-image-186\" />\r\n\r\nTodays Links\r\n<a href=\"https://www.facebook.com/events/1627888850811444/\" target=\"_blank\">Unlocking the other side Event on Facebook</a>\r\n<a href=\"https://www.facebook.com/glitzgobiz\" target=\"_blank\">Glitz & Go LLC on Facebook</a>\r\n<a href=\"https://www.facebook.com/pages/Emmanuel-Baptist-Church-Beloit-Wisconsin/136611463065902\" target=\"_blank\">Emmanuel-Baptist-Church-Beloit-Wisconsin on Facebook</a>\r\n<a href=\"https://www.facebook.com/pages/Emmanuel-Baptist-Church-Beloit-Wisconsin/136611463065902\" target=\"_blank\">Emmanuel Babtist Church on the Web-www.emmanuelfamily.org</a>','2 upcoming events TBP will be covering','','inherit','closed','open','','184-revision-v1','','','2015-07-30 14:30:06','2015-07-30 14:30:06','',184,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/184-revision-v1/',0,'revision','',0),(189,1,'2015-07-30 14:31:40','2015-07-30 14:31:40','','hervey','Anthony Hervey','inherit','closed','open','','hervey','','','2015-07-30 14:31:51','2015-07-30 14:31:51','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/hervey.jpg',0,'attachment','image/jpeg',0),(190,1,'2015-07-30 14:32:11','2015-07-30 14:32:11','','AndyG','Andy Grutzman','inherit','closed','open','','andyg','','','2015-07-30 14:32:19','2015-07-30 14:32:19','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/AndyG.jpg',0,'attachment','image/jpeg',0),(492,1,'2015-08-30 19:09:48','2015-08-30 19:09:48','Here is the link to WADR\'s audio live stream <a href=\"http://janesvillecommunityradio.com/listen-live/\" target=\"_blank\">janesvillecommunityradio.com/listen-live</a>\r\n\r\nOr you can view the live-stream:\r\n<iframe src=\"//www.youtube.com/embed/P56ZHNOUQBg\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','WADR Morning Show','','publish','open','open','','wadr-morning-show','','','2015-08-30 19:14:28','2015-08-30 19:14:28','',0,'http://thebeloitpod.com/wordpress1/?page_id=492',0,'page','',0),(493,1,'2015-08-30 19:09:48','2015-08-30 19:09:48','Here is the link to WADR\'s live stream <a href=\"http://janesvillecommunityradio.com/listen-live/\" target=\"_blank\">janesvillecommunityradio.com/listen-live</a>','WADR Morning Show','','inherit','open','open','','492-revision-v1','','','2015-08-30 19:09:48','2015-08-30 19:09:48','',492,'http://thebeloitpod.com/wordpress1/index.php/2015/08/30/492-revision-v1/',0,'revision','',0),(494,1,'2015-08-30 19:14:28','2015-08-30 19:14:28','Here is the link to WADR\'s audio live stream <a href=\"http://janesvillecommunityradio.com/listen-live/\" target=\"_blank\">janesvillecommunityradio.com/listen-live</a>\r\n\r\nOr you can view the live-stream:\r\n<iframe src=\"//www.youtube.com/embed/P56ZHNOUQBg\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','WADR Morning Show','','inherit','open','open','','492-revision-v1','','','2015-08-30 19:14:28','2015-08-30 19:14:28','',492,'http://thebeloitpod.com/wordpress1/index.php/2015/08/30/492-revision-v1/',0,'revision','',0),(498,1,'2015-09-07 17:08:12','2015-09-07 17:08:12',' \r\n\r\nIts Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week!\r\n\r\n \r\n\r\n<strong><img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11951151_1706070902962439_8273790517523676929_n.jpg?oh=d5bee96bc3e96af1a4bf8176fedcd446&oe=567385E6\" alt=\"\" width=\"378\" height=\"378\" /><em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n\r\n\r\n<ul>\r\nhttp://hwcdn.libsyn.com/p/6/7/c/67cefb0e31b20141/Lateshow9-4-15.mp3?c_id=9769926&expiration=1441650445&hwt=f2d685c53b3f02d7cd00e835b4255885</ul>\r\n\r\n\r\n\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Labor Day 2015 at WADR','','inherit','open','open','','495-revision-v1','','','2015-09-07 17:08:12','2015-09-07 17:08:12','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-revision-v1/',0,'revision','',0),(192,1,'2015-07-30 14:49:45','2015-07-30 14:49:45','Today were checking in with Sean Patrick. Sean is a long-time Beloit resident who has also lived in areas such as Chicago and Janesville. Today Sean checks in with us from the road to talk about his career as a semi driver/operator. \r\n\r\n[caption id=\"attachment_193\" align=\"alignnone\" width=\"225\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/seanpatrick-225x300.jpg\" alt=\"Sean Patrick\" width=\"225\" height=\"300\" class=\"size-medium wp-image-193\" /> Sean Patrick[/caption]\r\n\r\nTodays Links\r\n<a href=\"http://wisconsindot.gov/Pages/dmv/com-drv-vehs/cdl-how-aply/cdlapply.aspx\" target=\"_blank\">http://wisconsindot.gov- Cdl how to apply</a>\r\n<a href=\"https://en.wikipedia.org/wiki/Commercial_driver%27s_license\" target=\"_blank\">wikipedia.org- Commercial driver license</a>\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Sean Patrick','','publish','closed','open','','sean-patrick-3','','','2015-07-30 14:57:26','2015-07-30 14:57:26','',0,'http://thebeloitpod.com/wordpress1/?p=192',0,'post','',0),(193,1,'2015-07-30 14:41:32','2015-07-30 14:41:32','','seanpatrick','Sean Patrick','inherit','closed','open','','seanpatrick','','','2015-07-30 14:41:41','2015-07-30 14:41:41','',192,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/seanpatrick.jpg',0,'attachment','image/jpeg',0),(194,1,'2015-07-30 14:49:45','2015-07-30 14:49:45','Today were checking in with Sean Patrick. Sean is a long-time Beloit resident who has also lived in areas such as Chicago and Janesville. Today Sean checks in with us from the road to talk about his career as a semi driver/operator. \r\n\r\n[caption id=\"attachment_193\" align=\"alignnone\" width=\"225\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/seanpatrick-225x300.jpg\" alt=\"Sean Patrick\" width=\"225\" height=\"300\" class=\"size-medium wp-image-193\" /> Sean Patrick[/caption]\r\n\r\nTodays Links\r\n<a href=\"http://wisconsindot.gov/Pages/dmv/com-drv-vehs/cdl-how-aply/cdlapply.aspx\" target=\"_blank\">http://wisconsindot.gov- Cdl how to apply</a>\r\n<a href=\"https://en.wikipedia.org/wiki/Commercial_driver%27s_license\" target=\"_blank\">wikipedia.org- Commercial driver license</a>\r\n<a href=\"http://thebeloitpod.libsyn.com\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Sean Patrick','','inherit','closed','open','','192-revision-v1','','','2015-07-30 14:49:45','2015-07-30 14:49:45','',192,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/192-revision-v1/',0,'revision','',0),(195,1,'2015-07-30 14:53:12','2015-07-30 14:53:12','On todays episode of TBP I\'m sitting down at Tin Dog Records with Richard Harkrider. Tin Dog Records was established in 2013 by previous owner Jon Reseburg, in 2015 Richie took over the store as it\'s new owner. How cool is it to have our very own record store in downtown Beloit? Lets welcome Richie and Tin dog Records to The Beloit Podcast!\r\n\r\n[caption id=\"attachment_196\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/tindogrecords-300x217.jpg\" alt=\"Tin Dog Records\" width=\"300\" height=\"217\" class=\"size-medium wp-image-196\" /> Tin Dog Records[/caption]\r\n\r\nTodays Links\r\n<a href=\"http://www.tindogrecords.com\" target=\"_blank\">www.tindogrecords.com</a>\r\n<a href=\"https://www.facebook.com/tindogrecordsbeloit/timeline\" target=\"_blank\">Tin Dog Records on Facebook</a>\r\n ','Richard Harkrider- Tin Dog Records','','publish','closed','open','','richard-harkrider-tin-dog-records-2','','','2015-07-30 14:53:12','2015-07-30 14:53:12','',0,'http://thebeloitpod.com/wordpress1/?p=195',0,'post','',0),(196,1,'2015-07-30 14:51:12','2015-07-30 14:51:12','','tindogrecords','Tin Dog Records','inherit','closed','open','','tindogrecords','','','2015-08-04 03:39:38','2015-08-04 03:39:38','',195,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/tindogrecords.jpg',1,'attachment','image/jpeg',0),(197,1,'2015-07-30 14:53:12','2015-07-30 14:53:12','On todays episode of TBP I\'m sitting down at Tin Dog Records with Richard Harkrider. Tin Dog Records was established in 2013 by previous owner Jon Reseburg, in 2015 Richie took over the store as it\'s new owner. How cool is it to have our very own record store in downtown Beloit? Lets welcome Richie and Tin dog Records to The Beloit Podcast!\r\n\r\n[caption id=\"attachment_196\" align=\"alignnone\" width=\"300\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/tindogrecords-300x217.jpg\" alt=\"Tin Dog Records\" width=\"300\" height=\"217\" class=\"size-medium wp-image-196\" /> Tin Dog Records[/caption]\r\n\r\nTodays Links\r\n<a href=\"http://www.tindogrecords.com\" target=\"_blank\">www.tindogrecords.com</a>\r\n<a href=\"https://www.facebook.com/tindogrecordsbeloit/timeline\" target=\"_blank\">Tin Dog Records on Facebook</a>\r\n ','Richard Harkrider- Tin Dog Records','','inherit','closed','open','','195-revision-v1','','','2015-07-30 14:53:12','2015-07-30 14:53:12','',195,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/195-revision-v1/',0,'revision','',0),(500,1,'2015-09-07 17:48:32','2015-09-07 17:48:32',' \r\n\r\nIts Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week!\r\n\r\n \r\n\r\n<strong><img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11951151_1706070902962439_8273790517523676929_n.jpg?oh=d5bee96bc3e96af1a4bf8176fedcd446&oe=567385E6\" alt=\"\" width=\"378\" height=\"378\" /><em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>\r\n\r\n[embed]http://traffic.libsyn.com/thebeloitpod/LaborDay.mp3[/embed]','Labor Day 2015 at WADR','','inherit','open','open','','495-revision-v1','','','2015-09-07 17:48:32','2015-09-07 17:48:32','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-revision-v1/',0,'revision','',0),(199,1,'2015-07-30 15:02:50','2015-07-30 15:02:50','[caption id=\"attachment_5\" align=\"alignnone\" width=\"222\"]<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732-222x300.jpg\" alt=\"Host Reese Wood\" width=\"222\" height=\"300\" class=\"size-medium wp-image-5\" /></a> Host Reese Wood[/caption]\r\nThe Beloit Podcast is an education and communications based audio show. Five days a week host Reese Wood will bring a information about the Beloit area, its people and places; past, present, and future. Anything relevant to our city, its geographic location, its people, history, business, etc. You will be surprised at the many ways The Beloit podcast will highlight Beloit as the pivot point of each daily episode. Expect to hear anything from interviews, stories, business, economy, current events, local events, music features, lectures, and readings. Each day a new and different topic to look forward to!\r\n\r\n[embed]https://www.youtube.com/watch?v=CQQJj3rynts[/embed]','About','','inherit','closed','open','','46-revision-v1','','','2015-07-30 15:02:50','2015-07-30 15:02:50','',46,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/46-revision-v1/',0,'revision','',0),(200,1,'2015-08-16 11:45:53','2015-08-16 11:45:53','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast.png\"><img class=\" size-medium wp-image-418 alignleft\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast-300x300.png\" alt=\"The Beloit Podcast\" width=\"300\" height=\"300\" data-wp-pid=\"418\" /></a>\nThe Beloit Podcast is an education and communications based audio show. Five days a week host Reese Wood will bring information about the Beloit area, its people and places; past, present, and future. Anything relevant to our city, its geographic location, its people, history, business, etc. You will be surprised at the many ways The Beloit Podcast will highlight Beloit as the pivot point with each daily episode. Expect to hear anything ranging from interviews, stories, business, economy, current events, local events, music features, lectures, and readings. Each day will be a new and different topic to look forward to!\n\n[embed]https://www.youtube.com/watch?v=CQQJj3rynts[/embed]','About','','inherit','closed','open','','46-autosave-v1','','','2015-08-16 11:45:53','2015-08-16 11:45:53','',46,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/46-autosave-v1/',0,'revision','',0),(201,1,'2015-07-30 15:05:42','2015-07-30 15:05:42','[caption id=\"attachment_5\" align=\"alignnone\" width=\"222\"]<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732-222x300.jpg\" alt=\"Host Reese Wood\" width=\"222\" height=\"300\" class=\"size-medium wp-image-5\" /></a> Host Reese Wood[/caption]\r\nThe Beloit Podcast is an education and communications based audio show. Five days a week host Reese Wood will bring information about the Beloit area, its people and places; past, present, and future. Anything relevant to our city, its geographic location, its people, history, business, etc. You will be surprised at the many ways The Beloit Podcast will highlight Beloit as the pivot point with each daily episode. Expect to hear anything ranging from interviews, stories, business, economy, current events, local events, music features, lectures, and readings. Each day will be a new and different topic to look forward to!\r\n[embed]https://www.youtube.com/watch?v=CQQJj3rynts[/embed]','About','','inherit','closed','open','','46-revision-v1','','','2015-07-30 15:05:42','2015-07-30 15:05:42','',46,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/46-revision-v1/',0,'revision','',0),(203,1,'2015-07-30 15:07:23','2015-07-30 15:07:23','[caption id=\"attachment_5\" align=\"alignnone\" width=\"222\"]<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732-222x300.jpg\" alt=\"Host-Reese Wood\" width=\"222\" height=\"300\" class=\"size-medium wp-image-5\" /> Host-Reese Wood[/caption]\r\nThe Beloit Podcast is an education and communications based audio show. Five days a week host Reese Wood will bring information about the Beloit area, its people and places; past, present, and future. Anything relevant to our city, its geographic location, its people, history, business, etc. You will be surprised at the many ways The Beloit Podcast will highlight Beloit as the pivot point with each daily episode. Expect to hear anything ranging from interviews, stories, business, economy, current events, local events, music features, lectures, and readings. Each day will be a new and different topic to look forward to!\r\n[embed]https://www.youtube.com/watch?v=CQQJj3rynts[/embed]','About','','inherit','closed','open','','46-revision-v1','','','2015-07-30 15:07:23','2015-07-30 15:07:23','',46,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/46-revision-v1/',0,'revision','',0),(202,1,'2015-07-30 15:06:31','2015-07-30 15:06:31','[caption id=\"attachment_5\" align=\"alignnone\" width=\"150\"]<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/20150724_113010_20150724115010732-150x150.jpg\" alt=\"Host-Reese Wood\" width=\"150\" height=\"150\" class=\"size-thumbnail wp-image-5\" /></a> Host-Reese Wood[/caption]\r\nThe Beloit Podcast is an education and communications based audio show. Five days a week host Reese Wood will bring information about the Beloit area, its people and places; past, present, and future. Anything relevant to our city, its geographic location, its people, history, business, etc. You will be surprised at the many ways The Beloit Podcast will highlight Beloit as the pivot point with each daily episode. Expect to hear anything ranging from interviews, stories, business, economy, current events, local events, music features, lectures, and readings. Each day will be a new and different topic to look forward to!\r\n[embed]https://www.youtube.com/watch?v=CQQJj3rynts[/embed]','About','','inherit','closed','open','','46-revision-v1','','','2015-07-30 15:06:31','2015-07-30 15:06:31','',46,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/46-revision-v1/',0,'revision','',0),(271,1,'2015-08-07 15:04:45','2015-08-07 15:04:45','','dariouspittmanbanner','','inherit','closed','open','','dariouspittmanbanner','','','2015-08-07 15:04:45','2015-08-07 15:04:45','',268,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/dariouspittmanbanner.png',0,'attachment','image/png',0),(207,1,'2015-07-30 23:11:08','2015-07-30 23:11:08','<p style=\"text-align: left;\">If you would like to see information added or corrected please take it upon yourself to contribute. You are responsible for choosing the role you play in this wiki, if you would like to contribute please do! A few examples are if you see a typo, we encourage and need you to fix it. If you think a sentence is oddly worded and can make it better, do it. If you\'ve never edited a wiki we\'re here to lend a helping hand, join the TBP members/group and you will get the help you need.</p>\r\n\r\n\r\n[caption id=\"attachment_205\" align=\"aligncenter\" width=\"1000\"]<a href=\"http://thebeloitpod.com/mediawiki1/index.php?title=Main_Page\"><img class=\"size-full wp-image-205\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastWIKIbanner.jpg\" alt=\"Click image to enter Wiki\" width=\"1000\" height=\"562\" /></a> Click image to enter Wiki[/caption]','TBP Wiki','','inherit','closed','open','','58-revision-v1','','','2015-07-30 23:11:08','2015-07-30 23:11:08','',58,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/58-revision-v1/',0,'revision','',0),(206,1,'2015-07-30 21:47:10','2015-07-30 21:47:10','If you would like to see information added or corrected please take it upon yourself to contribute. You are responsible for choosing the role you play in this wiki, if you would like to contribute please do! A few examples are if you see a typo, we encourage and need you to fix it. If you think a sentence is oddly worded and can make it better, do it. If you\'ve never edited a wiki we\'re here to lend a helping hand, join the TBP members/group and you will get the help you need.[caption id=\"attachment_205\" align=\"alignnone\" width=\"300\"]<a href=\"http://thebeloitpod.com/mediawiki1/index.php?title=Main_Page\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastWIKIbanner-300x169.jpg\" alt=\"Click image to enter Wiki\" width=\"300\" height=\"169\" class=\"size-medium wp-image-205\" /></a> Click image to enter Wiki[/caption]\r\n<a href=\"http://thebeloitpod.com/mediawiki1/index.php?title=Main_Page\" target=\"_blank\">Enter the Wiki Here</a> ','TBP Wiki','','inherit','closed','open','','58-revision-v1','','','2015-07-30 21:47:10','2015-07-30 21:47:10','',58,'http://thebeloitpod.com/wordpress1/index.php/2015/07/30/58-revision-v1/',0,'revision','',0),(495,1,'2015-09-07 17:48:32','2015-09-07 17:48:32','Its Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week! I am live Monday-Friday on 103.5FM as well as streaming live at <a href=\"http://janesvillecommunityradio.com\" target=\"_blank\">janesvillecommunityradio.com</a> 7AM-8AM. You can listen on your smartphone, tablet, PC, or if you live in the Janesville area tune in to 103.5FM.\r\n\r\n \r\n\r\n<strong>\r\n<em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>\r\nLate Show on WADR 2AM-3AM 9/5/15\r\n\r\n[embed]http://traffic.libsyn.com/thebeloitpod/LaborDay.mp3[/embed]\r\n\r\nLabor Day Morning 7AM 8AM on WADR','Labor Day 2015 at WADR','','publish','open','open','','labor-day-2015-at-wadr','','','2015-09-07 18:19:28','2015-09-07 18:19:28','',0,'http://thebeloitpod.com/wordpress1/?p=495',0,'post','',0),(211,1,'2015-07-31 20:56:09','2015-07-31 20:56:09','[iframe style=\"border:none\" src=\"http://html5-player.libsyn.com/embed/episode/id/3708459/height/100/width/480/thumbnail/yes/theme/standard-mini\" height=\"100\" width=\"480\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen]<br /><p><span style=\"font-size: 14pt;\">On today\'s episode of TBP I am discussing the potential for nationwide riots and pandemic in 2015. If your tuning in for shock value you will disapointed! TBP is an educaiton and communications based audio program. Today I am opening the discussion on this topic! </span></p>\r\n<p><span style=\"font-size: 14pt;\"><img src=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQEXhUChIZxu9kr8oYrkzPg0d2hQMUBGcqEIikQE38gjPWYSyINSQ\" alt=\"\" width=\"294\" height=\"171\" /></span></p>\r\n<p> </p><br /><a href=\"http://thebeloitpod.libsyn.com/the-potential-for-nationwide-riots-and-pandemic\">Check out this episode!</a>','The Potential for Nationwide Riots and Pandemic','','draft','open','open','','','','','2015-07-31 20:56:09','2015-07-31 20:56:09','',0,'http://thebeloitpod.com/wordpress1/?p=211',0,'post','',0),(212,1,'2015-07-31 20:56:09','2015-07-31 20:56:09','[iframe style=\"border:none\" src=\"http://html5-player.libsyn.com/embed/episode/id/3708459/height/100/width/480/thumbnail/yes/theme/standard-mini\" height=\"100\" width=\"480\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen]<br /><p><span style=\"font-size: 14pt;\">On today\'s episode of TBP I am discussing the potential for nationwide riots and pandemic in 2015. If your tuning in for shock value you will disapointed! TBP is an educaiton and communications based audio program. Today I am opening the discussion on this topic! </span></p>\r\n<p><span style=\"font-size: 14pt;\"><img src=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQEXhUChIZxu9kr8oYrkzPg0d2hQMUBGcqEIikQE38gjPWYSyINSQ\" alt=\"\" width=\"294\" height=\"171\" /></span></p>\r\n<p> </p><br /><a href=\"http://thebeloitpod.libsyn.com/the-potential-for-nationwide-riots-and-pandemic\">Check out this episode!</a>','The Potential for Nationwide Riots and Pandemic','','inherit','closed','open','','211-revision-v1','','','2015-07-31 20:56:09','2015-07-31 20:56:09','',211,'http://thebeloitpod.com/wordpress1/index.php/2015/07/31/211-revision-v1/',0,'revision','',0),(213,1,'2015-07-31 21:35:38','2015-07-31 21:35:38','[iframe style=\"border:none\" src=\"http://html5-player.libsyn.com/embed/episode/id/3708530/height/100/width/480/thumbnail/yes/theme/standard-mini\" height=\"100\" width=\"480\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen]<br /><p><span style=\"font-size: 14pt;\">Today I am officially launching the NEW <a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a>. It\'s been a lot of work and still has some fine tuning left, but I am very excited to bring it to you today! </span></p>\r\n<p><span style=\"font-size: 14pt;\"><img src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpt1/v/t1.0-9/11709235_899926306744404_4752313086885996034_n.jpg?oh=946d1ce45ed9ce3b992f7551bc883f63&oe=5640B216\" alt=\"\" width=\"478\" height=\"180\" /></span></p>\r\n<p> </p><br /><a href=\"http://thebeloitpod.libsyn.com/official-launch-of-thebeloitpodcom\">Check out this episode!</a>','Official Launch of thebeloitpod.com','','draft','open','open','','','','','2015-07-31 21:35:38','2015-07-31 21:35:38','',0,'http://thebeloitpod.com/wordpress1/?p=213',0,'post','',0),(214,1,'2015-07-31 21:35:38','2015-07-31 21:35:38','[iframe style=\"border:none\" src=\"http://html5-player.libsyn.com/embed/episode/id/3708530/height/100/width/480/thumbnail/yes/theme/standard-mini\" height=\"100\" width=\"480\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen]<br /><p><span style=\"font-size: 14pt;\">Today I am officially launching the NEW <a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a>. It\'s been a lot of work and still has some fine tuning left, but I am very excited to bring it to you today! </span></p>\r\n<p><span style=\"font-size: 14pt;\"><img src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpt1/v/t1.0-9/11709235_899926306744404_4752313086885996034_n.jpg?oh=946d1ce45ed9ce3b992f7551bc883f63&oe=5640B216\" alt=\"\" width=\"478\" height=\"180\" /></span></p>\r\n<p> </p><br /><a href=\"http://thebeloitpod.libsyn.com/official-launch-of-thebeloitpodcom\">Check out this episode!</a>','Official Launch of thebeloitpod.com','','inherit','closed','open','','213-revision-v1','','','2015-07-31 21:35:38','2015-07-31 21:35:38','',213,'http://thebeloitpod.com/wordpress1/index.php/2015/07/31/213-revision-v1/',0,'revision','',0),(216,1,'2015-07-31 21:51:50','2015-07-31 21:51:50','On today\'s episode of TBP I am discussing the potential for nationwide riots and pandemic in 2015. If your tuning in for shock value you will disappointed! TBP is an education and communications based audio program. Today I am opening the discussion on this topic!\r\n<img class=\" wp-image-218 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/riot.jpg\" alt=\"riot\" width=\"402\" height=\"226\" />\r\n\r\nBonus Content- 1st & 2nd Conference call on Mass Incarceration.\r\n<a href=\"http://hwcdn.libsyn.com/p/0/e/9/0e92a48c4ee4316b/ProfilingPhoneForum7-24-2.mp3?c_id=9547114&expiration=1438791566&hwt=4e235668e2d70e73e90d10bef5ff76f4\" target=\"_blank\">1st Conference on Mass Incarceration</a>\r\n<a href=\"http://hwcdn.libsyn.com/p/b/1/d/b1dff3279cc772f6/PhoneForum7-29.mp3?c_id=9518386&expiration=1438791778&hwt=79ee963b6a91e4d8edbbe7a41969a5c3\">2nd Mass Incarceration Conference call</a>\r\n \r\n\r\n\r\n','The Potential for Nationwide Riots and Pandemic','','publish','closed','open','','the-potential-for-nationwide-riots-and-pandemic','','','2015-08-05 15:38:05','2015-08-05 15:38:05','',0,'http://thebeloitpod.com/wordpress1/?p=216',0,'post','',0),(218,1,'2015-07-31 21:51:05','2015-07-31 21:51:05','','riot','','inherit','closed','open','','riot','','','2015-07-31 21:51:05','2015-07-31 21:51:05','',216,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/riot.jpg',0,'attachment','image/jpeg',0),(219,1,'2015-07-31 21:51:50','2015-07-31 21:51:50','On today\'s episode of TBP I am discussing the potential for nationwide riots and pandemic in 2015. If your tuning in for shock value you will disapointed! TBP is an educaiton and communications based audio program. Today I am opening the discussion on this topic!\r\n<img class=\"alignnone wp-image-218\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/riot.jpg\" alt=\"riot\" width=\"402\" height=\"226\" />','The Potential for Nationwide Riots and Pandemic','','inherit','closed','open','','216-revision-v1','','','2015-07-31 21:51:50','2015-07-31 21:51:50','',216,'http://thebeloitpod.com/wordpress1/index.php/2015/07/31/216-revision-v1/',0,'revision','',0),(220,1,'2015-07-31 22:01:00','2015-07-31 22:01:00','<div class=\"libsyn-item-release-date\">Jul 31, 2015</div>\r\n<div class=\"libsyn-item-body\">\r\n\r\nToday I am officially launching the NEW <a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a>. It\'s been a lot of work and still has some fine tuning left, but I am very excited to bring it to you today!\r\n\r\n</div>\r\n<img class=\" size-medium wp-image-221 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner3-300x169.jpg\" alt=\"thebeloitpodcastbanner\" width=\"300\" height=\"169\" />','The Official Launch of thebeloitpod.com','','publish','closed','open','','the-official-launch-of-thebeloitpod-com','','','2015-07-31 22:01:00','2015-07-31 22:01:00','',0,'http://thebeloitpod.com/wordpress1/?p=220',0,'post','',0),(221,1,'2015-07-31 21:59:24','2015-07-31 21:59:24','','thebeloitpodcastbanner','','inherit','closed','open','','thebeloitpodcastbanner-3','','','2015-07-31 21:59:24','2015-07-31 21:59:24','',220,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner3.jpg',0,'attachment','image/jpeg',0),(222,1,'2015-07-31 22:01:00','2015-07-31 22:01:00','<div class=\"libsyn-item-release-date\">Jul 31, 2015</div>\r\n<div class=\"libsyn-item-body\">\r\n\r\nToday I am officially launching the NEW <a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a>. It\'s been a lot of work and still has some fine tuning left, but I am very excited to bring it to you today!\r\n\r\n</div>\r\n<img class=\" size-medium wp-image-221 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastbanner3-300x169.jpg\" alt=\"thebeloitpodcastbanner\" width=\"300\" height=\"169\" />','The Official Launch of thebeloitpod.com','','inherit','closed','open','','220-revision-v1','','','2015-07-31 22:01:00','2015-07-31 22:01:00','',220,'http://thebeloitpod.com/wordpress1/index.php/2015/07/31/220-revision-v1/',0,'revision','',0),(223,1,'2015-07-31 22:01:28','2015-07-31 22:01:28','On today\'s episode of TBP I am discussing the potential for nationwide riots and pandemic in 2015. If your tuning in for shock value you will disapointed! TBP is an educaiton and communications based audio program. Today I am opening the discussion on this topic!\r\n<img class=\" wp-image-218 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/riot.jpg\" alt=\"riot\" width=\"402\" height=\"226\" />','The Potential for Nationwide Riots and Pandemic','','inherit','closed','open','','216-revision-v1','','','2015-07-31 22:01:28','2015-07-31 22:01:28','',216,'http://thebeloitpod.com/wordpress1/index.php/2015/07/31/216-revision-v1/',0,'revision','',0),(224,1,'2015-08-01 00:24:07','2015-08-01 00:24:07','On today\'s episode of TBP I am discussing the potential for nationwide riots and pandemic in 2015. If your tuning in for shock value you will disappointed! TBP is an education and communications based audio program. Today I am opening the discussion on this topic!\r\n<img class=\" wp-image-218 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/riot.jpg\" alt=\"riot\" width=\"402\" height=\"226\" />','The Potential for Nationwide Riots and Pandemic','','inherit','closed','open','','216-revision-v1','','','2015-08-01 00:24:07','2015-08-01 00:24:07','',216,'http://thebeloitpod.com/wordpress1/index.php/2015/08/01/216-revision-v1/',0,'revision','',0),(225,1,'2015-08-01 16:04:11','2015-08-01 16:04:11','Just a quick update! I am still modifying thebeloitpod.com. If you have comments or suggestions regarding ideas for thebeloitpod.com you are encouraged to share those ideas! Keep checking back for updates, this site will be more than your standard blog or webpage.','Some fine tuning left for thebeloitpod.com','','publish','closed','open','','some-fine-tuning-left-for-thebeloitpod-com','','','2015-08-01 16:04:11','2015-08-01 16:04:11','',0,'http://thebeloitpod.com/wordpress1/?p=225',0,'post','',0),(226,1,'2015-08-01 16:04:11','2015-08-01 16:04:11','Just a quick update! I am still modifying thebeloitpod.com. If you have comments or suggestions regarding ideas for thebeloitpod.com you are encouraged to share those ideas! Keep checking back for updates, this site will be more than your standard blog or webpage.','Some fine tuning left for thebeloitpod.com','','inherit','closed','open','','225-revision-v1','','','2015-08-01 16:04:11','2015-08-01 16:04:11','',225,'http://thebeloitpod.com/wordpress1/index.php/2015/08/01/225-revision-v1/',0,'revision','',0),(227,1,'2015-08-02 01:45:47','2015-08-02 01:45:47','<p style=\"text-align: left;\">At TBP we will have our own wiki for all things relevant to TBP, Beloit, and our community. If you would like to see information added or corrected please take it upon yourself to contribute. You are responsible for choosing the role you play in this wiki, if you would like to contribute please do! A few examples are if you see a typo, we encourage and need you to fix it. If you think a sentence is oddly worded and can make it better, do it. If you\'ve never edited a wiki we\'re here to lend a helping hand, join the TBP members/group and you will get the help you need.</p>\r\n\r\n\r\n[caption id=\"attachment_205\" align=\"aligncenter\" width=\"1000\"]<a href=\"http://thebeloitpod.com/mediawiki1/index.php?title=Main_Page\"><img class=\"size-full wp-image-205\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastWIKIbanner.jpg\" alt=\"Click image to enter Wiki\" width=\"1000\" height=\"562\" /></a> Click image to enter Wiki[/caption]','TBP Wiki','','inherit','closed','open','','58-revision-v1','','','2015-08-02 01:45:47','2015-08-02 01:45:47','',58,'http://thebeloitpod.com/wordpress1/index.php/2015/08/02/58-revision-v1/',0,'revision','',0),(228,1,'2015-08-02 01:46:18','2015-08-02 01:46:18','<p style=\"text-align: left;\">Are you familiar with Wikepedia? At TBP we will have our own wiki for all things relevant to TBP, Beloit, and our community. If you would like to see information added or corrected please take it upon yourself to contribute. You are responsible for choosing the role you play in this wiki, if you would like to contribute please do! A few examples are if you see a typo, we encourage and need you to fix it. If you think a sentence is oddly worded and can make it better, do it. If you\'ve never edited a wiki we\'re here to lend a helping hand, join the TBP members/group and you will get the help you need.</p>\r\n\r\n\r\n[caption id=\"attachment_205\" align=\"aligncenter\" width=\"1000\"]<a href=\"http://thebeloitpod.com/mediawiki1/index.php?title=Main_Page\"><img class=\"size-full wp-image-205\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/thebeloitpodcastWIKIbanner.jpg\" alt=\"Click image to enter Wiki\" width=\"1000\" height=\"562\" /></a> Click image to enter Wiki[/caption]','TBP Wiki','','inherit','closed','open','','58-revision-v1','','','2015-08-02 01:46:18','2015-08-02 01:46:18','',58,'http://thebeloitpod.com/wordpress1/index.php/2015/08/02/58-revision-v1/',0,'revision','',0),(230,1,'2015-08-03 02:58:04','2015-08-03 02:58:04','This where you can create new topics to barter, negotiate, or trade at your own will. I will moderate as little as necessary. Being a ridiculous(search the term if needed) will get you removed completely. This is an honorable forum! Let it remain as such.','Barter/Negotiate/trade','','inherit','closed','open','','229-revision-v1','','','2015-08-03 02:58:04','2015-08-03 02:58:04','',229,'http://thebeloitpod.com/wordpress1/index.php/2015/08/03/229-revision-v1/',0,'revision','',0),(231,1,'2015-08-03 03:02:40','2015-08-03 03:02:40','A <em>community resource</em> is anything that has the potential to improve the quality of life in a <em>community. Every community needs resources and access to them. Lets create or share some of the more simple and complex resources we can provide for others in our community. </em>','Community Resources','','publish','closed','open','','community-resources','','','2015-08-03 03:04:37','2015-08-03 03:04:37','',0,'http://thebeloitpod.com/wordpress1/?post_type=forum&p=231',3,'forum','',0),(232,1,'2015-08-03 03:02:40','2015-08-03 03:02:40','A <em>community resource</em> is anything that has the potential to improve the quality of life in a <em>community. Every community needs resources and access to them. Lets create or share some of the more simple and complex resources we can provide for others in our community. </em>','Community Resources','','inherit','closed','open','','231-revision-v1','','','2015-08-03 03:02:40','2015-08-03 03:02:40','',231,'http://thebeloitpod.com/wordpress1/index.php/2015/08/03/231-revision-v1/',0,'revision','',0),(233,1,'2015-08-03 03:03:54','2015-08-03 03:03:54','This is where you can introduce yourself to the TBP community.','Introductions','','inherit','closed','open','','84-autosave-v1','','','2015-08-03 03:03:54','2015-08-03 03:03:54','',84,'http://thebeloitpod.com/wordpress1/index.php/2015/08/03/84-autosave-v1/',0,'revision','',0),(234,1,'2015-08-03 03:05:29','2015-08-03 03:05:29','This is where you can discuss everything regarding the TBP wiki. Have a question about it? The wiki is a database for entering facts and other unspecific data about Beloit and our area. Document anything from a story you have, historical information, major events, etc. The wiki is open for anyone to make corrections to all the information provided within the wiki. If you can improve something feel free to do so.','The TBP Wiki','','publish','closed','open','','the-tbp-wiki','','','2015-08-03 03:10:09','2015-08-03 03:10:09','',0,'http://thebeloitpod.com/wordpress1/?post_type=forum&p=234',4,'forum','',0),(235,1,'2015-08-03 03:05:29','2015-08-03 03:05:29','','The TBP Wiki','','inherit','closed','open','','234-revision-v1','','','2015-08-03 03:05:29','2015-08-03 03:05:29','',234,'http://thebeloitpod.com/wordpress1/index.php/2015/08/03/234-revision-v1/',0,'revision','',0),(236,1,'2015-08-03 03:09:17','2015-08-03 03:09:17','This is where you can discuss everything regarding the TBP wiki. Have a question about it? The wiki is a database for entering facts and other unspecific data about Beloit and our area. Document anything from a story you have, historical information, major events, etc. The wiki is open for','The TBP Wiki','','inherit','closed','open','','234-autosave-v1','','','2015-08-03 03:09:17','2015-08-03 03:09:17','',234,'http://thebeloitpod.com/wordpress1/index.php/2015/08/03/234-autosave-v1/',0,'revision','',0),(237,1,'2015-08-03 03:10:09','2015-08-03 03:10:09','This is where you can discuss everything regarding the TBP wiki. Have a question about it? The wiki is a database for entering facts and other unspecific data about Beloit and our area. Document anything from a story you have, historical information, major events, etc. The wiki is open for anyone to make corrections to all the information provided within the wiki. If you can improve something feel free to do so.','The TBP Wiki','','inherit','closed','open','','234-revision-v1','','','2015-08-03 03:10:09','2015-08-03 03:10:09','',234,'http://thebeloitpod.com/wordpress1/index.php/2015/08/03/234-revision-v1/',0,'revision','',0),(238,1,'2015-08-03 03:13:08','2015-08-03 03:13:08','All questions regarding TBP memberships can be posted here. Either I, the admin of this site, or someone within the TBP community will answer your question.','Memberships & the Monthly Money Bomb','','publish','closed','open','','memberships-the-monthly-money-bomb','','','2015-08-03 03:13:08','2015-08-03 03:13:08','',0,'http://thebeloitpod.com/wordpress1/?post_type=forum&p=238',5,'forum','',0),(239,1,'2015-08-03 03:13:08','2015-08-03 03:13:08','All questions regarding TBP memberships can be posted here. Either I, the admin of this site, or someone within the TBP community will answer your question.','Memberships & the Monthly Money Bomb','','inherit','closed','open','','238-revision-v1','','','2015-08-03 03:13:08','2015-08-03 03:13:08','',238,'http://thebeloitpod.com/wordpress1/index.php/2015/08/03/238-revision-v1/',0,'revision','',0),(240,1,'2015-08-04 03:21:40','2015-08-04 03:21:40','','New Slider','','publish','closed','open','','new-slider','','','2015-08-04 03:39:38','2015-08-04 03:39:38','',0,'http://thebeloitpod.com/wordpress1/?post_type=ml-slider&p=240',0,'ml-slider','',0),(242,1,'2015-08-04 03:56:07','2015-08-04 03:56:07','Today on TBP we will listen to the Mass Incarceration Forum that took place july 25th at the Emmanuel Baptist Church. Put on your thinking cap if you must! Were about to discuss the subject of mass incarceration. Today\'s episode has been divided into two parts. You will need to click on the \"bonus\" button to listen to the 2nd part of the forum. <img class=\" size-medium wp-image-186 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/travestyinWI-213x300.jpg\" alt=\"travestyinWI\" width=\"213\" height=\"300\" />\r\n\r\n \r\n\r\nPart-2\r\n\r\n[embed]http://traffic.libsyn.com/thebeloitpod/MIforummainspeakers.mp3[/embed]\r\n\r\n \r\n\r\nPart-1','The Mass Incarceration Forum 7-25-15','','publish','closed','open','','the-mass-incarceration-forum-7-25-15','','','2015-08-04 03:56:07','2015-08-04 03:56:07','',0,'http://thebeloitpod.com/wordpress1/?p=242',0,'post','',0),(241,1,'2015-08-04 03:37:28','2015-08-04 03:37:28','','cropped-new-logo-beloit','','inherit','closed','open','','cropped-new-logo-beloit','','','2015-08-04 03:39:38','2015-08-04 03:39:38','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/cropped-new-logo-beloit1.png',3,'attachment','image/png',0),(243,1,'2015-08-04 03:56:07','2015-08-04 03:56:07','Today on TBP we will listen to the Mass Incarceration Forum that took place july 25th at the Emmanuel Baptist Church. Put on your thinking cap if you must! Were about to discuss the subject of mass incarceration. Today\'s episode has been divided into two parts. You will need to click on the \"bonus\" button to listen to the 2nd part of the forum. <img class=\" size-medium wp-image-186 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/travestyinWI-213x300.jpg\" alt=\"travestyinWI\" width=\"213\" height=\"300\" />\r\n\r\n \r\n\r\nPart-2\r\n\r\n[embed]http://traffic.libsyn.com/thebeloitpod/MIforummainspeakers.mp3[/embed]\r\n\r\n \r\n\r\nPart-1','The Mass Incarceration Forum 7-25-15','','inherit','closed','open','','242-revision-v1','','','2015-08-04 03:56:07','2015-08-04 03:56:07','',242,'http://thebeloitpod.com/wordpress1/index.php/2015/08/04/242-revision-v1/',0,'revision','',0),(256,1,'2015-08-05 16:47:18','2015-08-05 16:47:18','Charles Alexander Eastman was a Native American Indian who lived from 1858-1939.In his early life he was known as Hakadah, then Ohiye S\'a, and later taking the name Charles Alexander Eastman. Today we will look at an individual who continues to have relevance to Beloit and its history.\r\n\r\n[caption id=\"attachment_245\" align=\"alignnone\" width=\"300\"]<img class=\"size-medium wp-image-245\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/eastmancollage-300x258.jpg\" alt=\"Hakadah, Ohíye S’a, & Charles Alexander Eastman \" width=\"300\" height=\"258\" /> Hakadah, Ohíye S’a, & Charles Alexander Eastman[/caption]\r\n\r\n<em>Todays Links</em>\r\n\r\n<a href=\"https://en.wikipedia.org/wiki/Charles_Eastman\" target=\"_blank\">Charles Eastman on Wikipedia.com</a>\r\n\r\n<a href=\"https://www.facebook.com/pages/Charles-Eastman/106329239398187?fref=ts\" target=\"_blank\">Charles A. Eastman on Facebook</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?v=w-HPThJPHAI\">Youtube.com- Ohiyesa:Soul of an Indian</a>\r\n\r\n \r\n\r\n \r\nRead more at http://thebeloitpod.libsyn.com/#bfTlj78S33d4UZYx.99','Hakadah, Ohíye S’a, & Charles Alexander Eastman','','inherit','closed','open','','244-revision-v1','','','2015-08-05 16:47:18','2015-08-05 16:47:18','',244,'http://thebeloitpod.com/wordpress1/index.php/2015/08/05/244-revision-v1/',0,'revision','',0),(246,1,'2015-08-05 14:44:26','2015-08-05 14:44:26','Charles Alexander Eastman was a Native American Indian who lived from 18528-1939.In his early life he was known as Hakadah, then Ohiye S\'a, and later taking the name Charles Alexander Eastman. Today we will look at an individual who continues to have relevance to Beloit and its history.\r\n\r\n[caption id=\"attachment_245\" align=\"alignnone\" width=\"300\"]<img class=\"size-medium wp-image-245\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/eastmancollage-300x258.jpg\" alt=\"Hakadah, Ohíye S’a, & Charles Alexander Eastman \" width=\"300\" height=\"258\" /> Hakadah, Ohíye S’a, & Charles Alexander Eastman[/caption]\r\n\r\n<em>Todays Links</em>\r\n\r\n<a href=\"https://en.wikipedia.org/wiki/Charles_Eastman\" target=\"_blank\">Charles Eastman on Wikipedia.com</a>\r\n\r\n<a href=\"https://www.facebook.com/pages/Charles-Eastman/106329239398187?fref=ts\" target=\"_blank\">Charles A. Eastman on Facebook</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?v=w-HPThJPHAI\">Youtube.com- Ohiyesa:Soul of an Indian</a>\r\n\r\nRead more at http://thebeloitpod.libsyn.com/#bfTlj78S33d4UZYx.99\r\n\r\n \r\n\r\n \r\n\r\n \r\nRead more at http://thebeloitpod.libsyn.com/#bfTlj78S33d4UZYx.99','Hakadah, Ohíye S’a, & Charles Alexander Eastman','','inherit','closed','open','','244-revision-v1','','','2015-08-05 14:44:26','2015-08-05 14:44:26','',244,'http://thebeloitpod.com/wordpress1/index.php/2015/08/05/244-revision-v1/',0,'revision','',0),(247,1,'2015-08-05 14:57:58','2015-08-05 14:57:58','Charles Alexander Eastman was a Native American Indian who lived from 1858-1939.In his early life he was known as Hakadah, then Ohiye S\'a, and later taking the name Charles Alexander Eastman. Today we will look at an individual who continues to have relevance to Beloit and its history.\r\n\r\n[caption id=\"attachment_245\" align=\"alignnone\" width=\"300\"]<img class=\"size-medium wp-image-245\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/eastmancollage-300x258.jpg\" alt=\"Hakadah, Ohíye S’a, & Charles Alexander Eastman \" width=\"300\" height=\"258\" /> Hakadah, Ohíye S’a, & Charles Alexander Eastman[/caption]\r\n\r\n<em>Todays Links</em>\r\n\r\n<a href=\"https://en.wikipedia.org/wiki/Charles_Eastman\" target=\"_blank\">Charles Eastman on Wikipedia.com</a>\r\n\r\n<a href=\"https://www.facebook.com/pages/Charles-Eastman/106329239398187?fref=ts\" target=\"_blank\">Charles A. Eastman on Facebook</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?v=w-HPThJPHAI\">Youtube.com- Ohiyesa:Soul of an Indian</a>\r\n\r\nRead more at http://thebeloitpod.libsyn.com/#bfTlj78S33d4UZYx.99\r\n\r\n \r\n\r\n \r\nRead more at http://thebeloitpod.libsyn.com/#bfTlj78S33d4UZYx.99','Hakadah, Ohíye S’a, & Charles Alexander Eastman','','inherit','closed','open','','244-revision-v1','','','2015-08-05 14:57:58','2015-08-05 14:57:58','',244,'http://thebeloitpod.com/wordpress1/index.php/2015/08/05/244-revision-v1/',0,'revision','',0),(248,1,'2015-08-05 15:37:46','2015-08-05 15:37:46','On today\'s episode of TBP I am discussing the potential for nationwide riots and pandemic in 2015. If your tuning in for shock value you will disappointed! TBP is an education and communications based audio program. Today I am opening the discussion on this topic!\n<img class=\" wp-image-218 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/riot.jpg\" alt=\"riot\" width=\"402\" height=\"226\" />\n\nBonus Content- 2nd Conference call on Mass Incarceration.\n<a href=\"http://hwcdn.libsyn.com/p/b/1/d/b1dff3279cc772f6/PhoneForum7-29.mp3?c_id=9518386&expiration=1438791778&hwt=79ee963b6a91e4d8edbbe7a41969a5c3\">2nd Mass Incarceration Conference call</a>\n \n<a href=\"http://hwcdn.libsyn.com/p/0/e/9/0e92a48c4ee4316b/ProfilingPhoneForum7-24-2.mp3?c_id=9547114&expiration=1438791566&hwt=4e235668e2d70e73e90d10bef5ff76f4\" target=\"_blank\">1st Conference on Mass Incarceration</a>\n\n\n\n','The Potential for Nationwide Riots and Pandemic','','inherit','closed','open','','216-autosave-v1','','','2015-08-05 15:37:46','2015-08-05 15:37:46','',216,'http://thebeloitpod.com/wordpress1/index.php/2015/08/05/216-autosave-v1/',0,'revision','',0),(249,1,'2015-08-05 15:24:39','2015-08-05 15:24:39','On today\'s episode of TBP I am discussing the potential for nationwide riots and pandemic in 2015. If your tuning in for shock value you will disappointed! TBP is an education and communications based audio program. Today I am opening the discussion on this topic!\r\n<img class=\" wp-image-218 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/riot.jpg\" alt=\"riot\" width=\"402\" height=\"226\" />\r\n\r\nBonus Content- 2nd Conference call on Mass Incarceration.\r\n<a href=\"http://hwcdn.libsyn.com/p/b/1/d/b1dff3279cc772f6/PhoneForum7-29.mp3?c_id=9518386&expiration=1438791778&hwt=79ee963b6a91e4d8edbbe7a41969a5c3\">2nd Mass Incarceration Conference call</a>\r\n ','The Potential for Nationwide Riots and Pandemic','','inherit','closed','open','','216-revision-v1','','','2015-08-05 15:24:39','2015-08-05 15:24:39','',216,'http://thebeloitpod.com/wordpress1/index.php/2015/08/05/216-revision-v1/',0,'revision','',0),(250,1,'2015-08-05 15:38:05','2015-08-05 15:38:05','On today\'s episode of TBP I am discussing the potential for nationwide riots and pandemic in 2015. If your tuning in for shock value you will disappointed! TBP is an education and communications based audio program. Today I am opening the discussion on this topic!\r\n<img class=\" wp-image-218 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/riot.jpg\" alt=\"riot\" width=\"402\" height=\"226\" />\r\n\r\nBonus Content- 1st & 2nd Conference call on Mass Incarceration.\r\n<a href=\"http://hwcdn.libsyn.com/p/0/e/9/0e92a48c4ee4316b/ProfilingPhoneForum7-24-2.mp3?c_id=9547114&expiration=1438791566&hwt=4e235668e2d70e73e90d10bef5ff76f4\" target=\"_blank\">1st Conference on Mass Incarceration</a>\r\n<a href=\"http://hwcdn.libsyn.com/p/b/1/d/b1dff3279cc772f6/PhoneForum7-29.mp3?c_id=9518386&expiration=1438791778&hwt=79ee963b6a91e4d8edbbe7a41969a5c3\">2nd Mass Incarceration Conference call</a>\r\n \r\n\r\n\r\n','The Potential for Nationwide Riots and Pandemic','','inherit','closed','open','','216-revision-v1','','','2015-08-05 15:38:05','2015-08-05 15:38:05','',216,'http://thebeloitpod.com/wordpress1/index.php/2015/08/05/216-revision-v1/',0,'revision','',0),(252,1,'2015-08-05 15:51:33','2015-08-05 15:51:33','If you scroll through the episodes you will notice some episodes contain extra/bonus content. From this day on ALL extra/bonus content will be posted in the Members area of thebeloitpod.com. I am now doing this to give exclusive incentives to listeners who would like to support the show. For listeners who would like to support the show for one month you can go to the store and sign up for the \"Explorers\" membership. Or you can support the show for a year of content when you sign up as a TBP \"Pioneer\". Both memberships are negotiable prices!!! That\'s right, if you contact me and negotiate a price that you can afford you and I will work out a membership of your choice. Also if you can find anywhere else on the web where you can become a member of any club, podcast, subscription of any kind, and at a NEGOTIABLE rate, I will give you one free year of TBP membership. Do you have to pay to keep getting the free daily episodes? No! Daily episodes will continue to be free. Memberships are for listeners who enjoy and benefit from the show and would like to show their support. Thanks to everyone who has continued to support TBP so far!\r\n\r\n-Reese Wood\r\n\r\nTBP Explorer Membership\r\n$0.00(Negotiable)\r\nBecome a TBP member for one month (30 days). Price is negotiable, all you have to do is send an amount that you would like to contribute to TBP and our monthly money-bomb. You can search the entire web, I do not think you will find another podcast that negotiates membership prices. TBP will do this! Let me know what you can afford and remember honesty is a powerful thing! Thanks for supporting The Beloit Podcast!\r\n\r\nTBP Pioneers Membership\r\n$0.00(Negotialbe)\r\nOne year of TBP membership, just as with the monthly memberhship prices are negotialbe. Annual membership is for those who would like to help TBP remain on the web, this is a way you can support the show.','Memberships and Bonus Content','','publish','closed','open','','memberships-and-bonus-content','','','2015-08-08 15:50:06','2015-08-08 15:50:06','',0,'http://thebeloitpod.com/wordpress1/?p=252',0,'post','',0),(253,1,'2015-08-05 15:51:33','2015-08-05 15:51:33','If you scroll through the episodes you will notice some episodes contain extra/bonus content. From this day on ALL extra/bonus content will be posted in the Members area of thebeloitpod.com. I am now doing this to give exclusive incentives to listeners who would like to support the show. For listeners who would like to support the show for one month you can go to the store and sign up for the \"Settlers\" membership. Or you can support the show for a year of content when you sign up as a TBP \"Pioneer\". Both memberships are negotiable prices!!! That\'s right, if you contact me and negotiate a price that you can afford you and I will work out a membership of your choice. Also if you can find anywhere else on the web where you can become a member of any club, podcast, subscription of any kind, and at a NEGOTIABLE rate, I will give you one free year of TBP membership. Do you have to pay to keep getting the free daily episodes? No! Daily episodes will continue to be free. Memberships are for listeners who enjoy and benefit from the show and would like to show their support. Thanks to everyone who has continued to support TBP so far! \r\n\r\n-Reese Wood','Memberships and Bonus Content','','inherit','closed','open','','252-revision-v1','','','2015-08-05 15:51:33','2015-08-05 15:51:33','',252,'http://thebeloitpod.com/wordpress1/index.php/2015/08/05/252-revision-v1/',0,'revision','',0),(254,1,'2015-08-05 15:59:41','2015-08-05 15:59:41','If you scroll through the episodes you will notice some episodes contain extra/bonus content. From this day on ALL extra/bonus content will be posted in the Members area of thebeloitpod.com. I am now doing this to give exclusive incentives to listeners who would like to support the show. For listeners who would like to support the show for one month you can go to the store and sign up for the \"Settlers\" membership. Or you can support the show for a year of content when you sign up as a TBP \"Pioneer\". Both memberships are negotiable prices!!! That\'s right, if you contact me and negotiate a price that you can afford you and I will work out a membership of your choice. Also if you can find anywhere else on the web where you can become a member of any club, podcast, subscription of any kind, and at a NEGOTIABLE rate, I will give you one free year of TBP membership. Do you have to pay to keep getting the free daily episodes? No! Daily episodes will continue to be free. Memberships are for listeners who enjoy and benefit from the show and would like to show their support. Thanks to everyone who has continued to support TBP so far! \n\n-Reese Wood\n\nTBP Settler Membership\n$0.00(Negotiable)\nBecome a TBP member for one month (30 days). Price is negotiable, all you have to do is send an amount that you would like to contribute to TBP and our monthly money-bomb. You can search the entire web, I do not think you will find another podcast that negotiates membership prices. TBP will do this! Let me know what you can afford and remember honesty is a powerful thing! Thanks for supporting The Beloit Podcast!\n\nTBP Pioneers Membership\n$0.00(Negotialbe)\nOne year of TBP membership, just as with the monthly memberhship prices are negotialbe. Annual membership is for those who would like to help TBP remain on the web, this is a way you can support the show. ','Memberships and Bonus Content','','inherit','closed','open','','252-autosave-v1','','','2015-08-05 15:59:41','2015-08-05 15:59:41','',252,'http://thebeloitpod.com/wordpress1/index.php/2015/08/05/252-autosave-v1/',0,'revision','',0),(255,1,'2015-08-05 15:59:43','2015-08-05 15:59:43','If you scroll through the episodes you will notice some episodes contain extra/bonus content. From this day on ALL extra/bonus content will be posted in the Members area of thebeloitpod.com. I am now doing this to give exclusive incentives to listeners who would like to support the show. For listeners who would like to support the show for one month you can go to the store and sign up for the \"Settlers\" membership. Or you can support the show for a year of content when you sign up as a TBP \"Pioneer\". Both memberships are negotiable prices!!! That\'s right, if you contact me and negotiate a price that you can afford you and I will work out a membership of your choice. Also if you can find anywhere else on the web where you can become a member of any club, podcast, subscription of any kind, and at a NEGOTIABLE rate, I will give you one free year of TBP membership. Do you have to pay to keep getting the free daily episodes? No! Daily episodes will continue to be free. Memberships are for listeners who enjoy and benefit from the show and would like to show their support. Thanks to everyone who has continued to support TBP so far! \r\n\r\n-Reese Wood\r\n\r\nTBP Settler Membership\r\n$0.00(Negotiable)\r\nBecome a TBP member for one month (30 days). Price is negotiable, all you have to do is send an amount that you would like to contribute to TBP and our monthly money-bomb. You can search the entire web, I do not think you will find another podcast that negotiates membership prices. TBP will do this! Let me know what you can afford and remember honesty is a powerful thing! Thanks for supporting The Beloit Podcast!\r\n\r\nTBP Pioneers Membership\r\n$0.00(Negotialbe)\r\nOne year of TBP membership, just as with the monthly memberhship prices are negotialbe. Annual membership is for those who would like to help TBP remain on the web, this is a way you can support the show. ','Memberships and Bonus Content','','inherit','closed','open','','252-revision-v1','','','2015-08-05 15:59:43','2015-08-05 15:59:43','',252,'http://thebeloitpod.com/wordpress1/index.php/2015/08/05/252-revision-v1/',0,'revision','',0),(413,1,'2015-08-14 00:22:12','2015-08-14 00:22:12','Last Friday I was in the WADR Janesville Community Radio studio with Andy Anderson and Chad Sheridan of the Open Mick Podcast.OMP Radio is a weekly LIVE comedy show Friday’s 8-10 pm on 103.5 FM WADR featuring two hilarious hosts: Andy Anderson and Chad Sheridan who will take you through two hours of live entertainment. Episodes will feature in-studio guests, callers and special interviews. OMP Radio is perfect for anyone who likes to laugh and is interested in a down to earth view on current events including issues that are happening right here in Janesville, Wisconsin.\r\n\r\n<em><img class=\" aligncenter\" src=\"http://cmptrgy.com/omp/wp-content/uploads/2015/07/omp-radio-home.jpg\" alt=\"\" width=\"225\" height=\"188\" /></em>\r\n\r\n<em>Todays Links</em>\r\n\r\n<em><a href=\"http://ompradio.com/\">ompradio.com</a></em>\r\n\r\n<em><a href=\"https://www.facebook.com/OpenMickPodcast\" target=\"_blank\">Open Mick Podcast on Facebook</a></em>\r\n\r\n ','Andy Anderson & Chad Sheridan of The Open Mick Podcast','','publish','open','open','','andy-anderson-chad-sheridan-of-the-open-mick-podcast','','','2015-08-14 00:22:12','2015-08-14 00:22:12','',0,'http://thebeloitpod.com/wordpress1/?p=413',0,'post','',0),(259,1,'2015-08-06 00:27:44','0000-00-00 00:00:00','','Links & Sponsors','','draft','closed','closed','','','','','2015-08-06 00:27:44','2015-08-06 00:27:44','',0,'http://thebeloitpod.com/wordpress1/?post_type=easymediagallery&p=259',0,'easymediagallery','',0),(260,1,'2015-08-06 15:32:08','2015-08-06 15:32:08','','AdamGasserthumb','','inherit','closed','open','','adamgasserthumb','','','2015-08-06 15:32:08','2015-08-06 15:32:08','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/AdamGasserthumb.jpg',0,'attachment','image/jpeg',0),(261,1,'2015-08-06 18:20:20','2015-08-06 18:20:20','','beloitauction','','inherit','closed','open','','beloitauction','','','2015-08-06 18:20:20','2015-08-06 18:20:20','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/beloitauction.png',0,'attachment','image/png',0),(262,1,'2015-08-06 18:22:16','2015-08-06 18:22:16','','beloitauction','','inherit','closed','open','','beloitauction-2','','','2015-08-06 18:34:14','2015-08-06 18:34:14','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/beloitauction1.png',0,'attachment','image/png',0),(263,1,'2015-08-06 18:23:41','2015-08-06 18:23:41','','adam gasser','','inherit','closed','open','','adam-gasser-2','','','2015-08-06 18:34:18','2015-08-06 18:34:18','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/adam-gasser.png',0,'attachment','image/png',0),(499,1,'2015-09-07 17:46:34','2015-09-07 17:46:34',' \r\n\r\nIts Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week!\r\n\r\n \r\n\r\n<strong><img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11951151_1706070902962439_8273790517523676929_n.jpg?oh=d5bee96bc3e96af1a4bf8176fedcd446&oe=567385E6\" alt=\"\" width=\"378\" height=\"378\" /><em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n[embed]http://traffic.libsyn.com/thebeloitpod/Lateshow9-4-15.mp3[/embed]\r\n\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Labor Day 2015 at WADR','','inherit','open','open','','495-revision-v1','','','2015-09-07 17:46:34','2015-09-07 17:46:34','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-revision-v1/',0,'revision','',0),(497,1,'2015-09-07 17:07:06','2015-09-07 17:07:06',' \r\n\r\nIts Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week!\r\n\r\n \r\n\r\n<strong><img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11951151_1706070902962439_8273790517523676929_n.jpg?oh=d5bee96bc3e96af1a4bf8176fedcd446&oe=567385E6\" alt=\"\" width=\"378\" height=\"378\" /><em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n<!--more-->\r\n\r\nhttp://hwcdn.libsyn.com/p/6/7/c/67cefb0e31b20141/Lateshow9-4-15.mp3?c_id=9769926&expiration=1441650445&hwt=f2d685c53b3f02d7cd00e835b4255885<!--more-->\r\n\r\n\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Labor Day 2015 at WADR','','inherit','open','open','','495-revision-v1','','','2015-09-07 17:07:06','2015-09-07 17:07:06','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-revision-v1/',0,'revision','',0),(265,1,'2015-08-07 13:37:42','2015-08-07 13:37:42','','the beloitpodcasttwitter','','inherit','closed','open','','the-beloitpodcasttwitter','','','2015-08-07 13:37:42','2015-08-07 13:37:42','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/the-beloitpodcasttwitter.png',0,'attachment','image/png',0),(266,1,'2015-08-07 13:38:42','2015-08-07 13:38:42','http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/cropped-the-beloitpodcasttwitter.png','cropped-the-beloitpodcasttwitter.png','','inherit','closed','open','','cropped-the-beloitpodcasttwitter-png','','','2015-08-07 13:38:42','2015-08-07 13:38:42','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/cropped-the-beloitpodcasttwitter.png',0,'attachment','image/png',0),(268,1,'2015-08-07 15:08:00','0000-00-00 00:00:00',' \n\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TRACETHAYERBANNER.png\"><img class=\" size-medium wp-image-272 alignleft\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TRACETHAYERBANNER-300x100.png\" alt=\"TRACETHAYERBANNER\" width=\"300\" height=\"100\" /></a>\n\n \n\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Rich-porterbanner3.jpg\"><img class=\" size-medium wp-image-274 alignleft\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Rich-porterbanner3-300x100.jpg\" alt=\"Rich porterbanner3\" width=\"300\" height=\"100\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/candyrainbanner.png\"><img class=\" size-medium wp-image-270 alignleft\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/candyrainbanner-300x100.png\" alt=\"candyrainbanner\" width=\"300\" height=\"100\" /></a>\n\n \n\n \n\n \n\n \n\n ','Links & Sponsors','','draft','closed','closed','','','','','2015-08-07 15:08:00','2015-08-07 15:08:00','',0,'http://thebeloitpod.com/wordpress1/?post_type=banner&p=268',0,'banner','',0),(269,1,'2015-08-07 14:40:32','2015-08-07 14:40:32','','the beloitpodcasttwitter','','inherit','closed','open','','the-beloitpodcasttwitter-2','','','2015-08-07 14:40:32','2015-08-07 14:40:32','',268,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/the-beloitpodcasttwitter1.png',0,'attachment','image/png',0),(270,1,'2015-08-07 14:41:45','2015-08-07 14:41:45','','candyrainbanner','','inherit','closed','open','','candyrainbanner','','','2015-08-07 14:41:45','2015-08-07 14:41:45','',268,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/candyrainbanner.png',0,'attachment','image/png',0),(272,1,'2015-08-07 15:05:27','2015-08-07 15:05:27','','TRACETHAYERBANNER','','inherit','closed','open','','tracethayerbanner','','','2015-08-07 15:05:27','2015-08-07 15:05:27','',268,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TRACETHAYERBANNER.png',0,'attachment','image/png',0),(273,1,'2015-08-07 15:06:52','2015-08-07 15:06:52','','Jonna The Happy Medium','','inherit','closed','open','','jonna-the-happy-medium','','','2015-08-07 15:06:52','2015-08-07 15:06:52','',268,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Jonna-The-Happy-Medium.png',0,'attachment','image/png',0),(274,1,'2015-08-07 15:07:28','2015-08-07 15:07:28','','Rich porterbanner3','','inherit','closed','open','','rich-porterbanner3','','','2015-08-07 15:07:28','2015-08-07 15:07:28','',268,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Rich-porterbanner3.jpg',0,'attachment','image/jpeg',0),(275,1,'2015-08-07 15:58:56','2015-08-07 15:58:56','','candyrainbanner','','inherit','closed','open','','candyrainbanner-2','','','2015-08-07 15:58:56','2015-08-07 15:58:56','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/candyrainbanner1.png',0,'attachment','image/png',0),(276,1,'2015-08-07 16:44:55','2015-08-07 16:44:55','','dariouspittmanbanner','','inherit','closed','open','','dariouspittmanbanner-2','','','2015-08-07 16:44:55','2015-08-07 16:44:55','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/dariouspittmanbanner1.png',0,'attachment','image/png',0),(277,1,'2015-08-07 16:48:06','2015-08-07 16:48:06','','TRACETHAYERBANNER','','inherit','closed','open','','tracethayerbanner-2','','','2015-08-07 16:48:06','2015-08-07 16:48:06','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TRACETHAYERBANNER1.png',0,'attachment','image/png',0),(278,1,'2015-08-07 17:44:43','2015-08-07 17:44:43','','Earthtoclarkbanner2','','inherit','closed','open','','earthtoclarkbanner2','','','2015-08-07 17:44:43','2015-08-07 17:44:43','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Earthtoclarkbanner2.jpg',0,'attachment','image/jpeg',0),(279,1,'2015-08-07 18:20:19','2015-08-07 18:20:19','','AUSTINSBARBERBANNER','','inherit','closed','open','','austinsbarberbanner','','','2015-08-07 18:20:19','2015-08-07 18:20:19','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/AUSTINSBARBERBANNER.png',0,'attachment','image/png',0),(280,1,'2015-08-07 18:24:06','2015-08-07 18:24:06','','AUSTINSBARBERBANNER (1)','','inherit','closed','open','','austinsbarberbanner-1','','','2015-08-07 18:24:06','2015-08-07 18:24:06','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/AUSTINSBARBERBANNER-1.png',0,'attachment','image/png',0),(281,1,'2015-08-07 18:39:56','2015-08-07 18:39:56','','tindogbanner','','inherit','closed','open','','tindogbanner','','','2015-08-07 18:39:56','2015-08-07 18:39:56','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/tindogbanner.png',0,'attachment','image/png',0),(284,1,'2015-08-07 22:16:50','2015-08-07 22:16:50','Tonight I have an interview for a new local resturant <a href=\"http://www.backyardbarbequejanesville.com/\" target=\"_blank\">Back Yard Barbeque Janesville</a> at 6. Then at. 9pm I will be sitting in with Andy Anderson and Chad Sheridan host\'s at <a href=\"http://ompradio.com/\" target=\"_blank\">The Open Mick Podcast</a>. OMP Radio is a weekly LIVE comedy show Friday’s 8-10 pm on 103.5 FM WADR.Episodes feature in-studio guests, callers and special interviews. OMP Radio is perfect for anyone who likes to laugh and is interested in a down to earth view on current events including issues that are happening right here in Janesville, Wisconsin. Catch me while I stream live through <a href=\"https://meerkatapp.co/\" target=\"_blank\">Meerkat</a>. All you have to do is stay right here on thebeloitpod.com\'s homepage for to watch live streaming video right under the banners on the left of the page. Lets see how this goes!','Live streaming tonight @9','','publish','closed','open','','live-streaming-tonight-9','','','2015-08-07 22:16:50','2015-08-07 22:16:50','',0,'http://thebeloitpod.com/wordpress1/?p=284',0,'post','',0),(418,1,'2015-08-16 11:45:22','2015-08-16 11:45:22','','The Beloit Podcast','','inherit','open','open','','the-beloit-podcast','','','2015-08-16 11:45:22','2015-08-16 11:45:22','',46,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast.png',0,'attachment','image/png',0),(286,1,'2015-08-07 22:16:50','2015-08-07 22:16:50','Tonight I have an interview for a new local resturant <a href=\"http://www.backyardbarbequejanesville.com/\" target=\"_blank\">Back Yard Barbeque Janesville</a> at 6. Then at. 9pm I will be sitting in with Andy Anderson and Chad Sheridan host\'s at <a href=\"http://ompradio.com/\" target=\"_blank\">The Open Mick Podcast</a>. OMP Radio is a weekly LIVE comedy show Friday’s 8-10 pm on 103.5 FM WADR.Episodes feature in-studio guests, callers and special interviews. OMP Radio is perfect for anyone who likes to laugh and is interested in a down to earth view on current events including issues that are happening right here in Janesville, Wisconsin. Catch me while I stream live through <a href=\"https://meerkatapp.co/\" target=\"_blank\">Meerkat</a>. All you have to do is stay right here on thebeloitpod.com\'s homepage for to watch live streaming video right under the banners on the left of the page. Lets see how this goes!','Live streaming tonight @9','','inherit','closed','open','','284-revision-v1','','','2015-08-07 22:16:50','2015-08-07 22:16:50','',284,'http://thebeloitpod.com/wordpress1/index.php/2015/08/07/284-revision-v1/',0,'revision','',0),(287,1,'2015-08-07 22:20:23','2015-08-07 22:20:23','','Lil ChiefBANNER','','inherit','closed','open','','lil-chiefbanner','','','2015-08-07 22:20:23','2015-08-07 22:20:23','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Lil-ChiefBANNER.png',0,'attachment','image/png',0),(288,1,'2015-08-08 00:52:08','2015-08-08 00:52:08','','BackyardBBQ','','inherit','closed','open','','backyardbbq','','','2015-08-08 00:52:08','2015-08-08 00:52:08','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/BackyardBBQ.png',0,'attachment','image/png',0),(422,1,'2015-08-17 02:48:15','0000-00-00 00:00:00','','Were Live right now! Click the Live! page','','draft','open','open','','','','','2015-08-17 02:48:15','2015-08-17 02:48:15','',0,'http://thebeloitpod.com/wordpress1/?p=422',0,'post','',0),(496,1,'2015-09-07 17:03:59','2015-09-07 17:03:59',' \r\n\r\nIts Labor day! I was live on the air at 103.5 lpFM Janesville Community Radio this morning as well as late night Saturday from 2AM-3AM. If you\'ve been missing the show look forward to new episodes all this week!\r\n\r\n \r\n\r\n<strong><img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/11951151_1706070902962439_8273790517523676929_n.jpg?oh=d5bee96bc3e96af1a4bf8176fedcd446&oe=567385E6\" alt=\"\" width=\"378\" height=\"378\" /><em>Todays Links</em></strong>\r\n\r\n<strong><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></strong>\r\n\r\n<strong><a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 103.5 LPFM Mornings with Reese Wood on FACEBOOK</a></strong>\r\n\r\n<strong><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com</a></strong>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/gce_feed/stats/\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','Labor Day 2015 at WADR','','inherit','open','open','','495-revision-v1','','','2015-09-07 17:03:59','2015-09-07 17:03:59','',495,'http://thebeloitpod.com/wordpress1/index.php/2015/09/07/495-revision-v1/',0,'revision','',0),(297,1,'2015-08-08 13:01:58','2015-08-08 13:01:58','','297','','trash','closed','open','','wpsc-cart-order','','','2015-08-08 13:01:58','2015-08-08 13:01:58','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/wpsc-cart-order/',0,'wpsc_cart_orders','',0),(298,1,'2015-08-08 14:32:21','2015-08-08 14:32:21','','TBP EXPLORERS','','inherit','closed','open','','tbp-explorers','','','2015-08-08 14:32:21','2015-08-08 14:32:21','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png',0,'attachment','image/png',0),(299,1,'2015-08-08 14:32:58','2015-08-08 14:32:58','','OMPbanner','','inherit','closed','open','','ompbanner','','','2015-08-08 14:32:58','2015-08-08 14:32:58','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/OMPbanner.png',0,'attachment','image/png',0),(300,1,'2015-08-08 14:41:34','2015-08-08 14:41:34','','TBPIONEERS','','inherit','closed','open','','tbpioneers','','','2015-08-08 14:41:34','2015-08-08 14:41:34','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS.png',0,'attachment','image/png',0),(518,1,'2015-09-11 14:46:14','2015-09-11 14:46:14','Todays WADR Morning show repeat is now out! Here is all todays local news, today in history, other news, and everything Janesville Community Radio!\r\n\r\n<em>Todays links</em>\r\n\r\n<em><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com/</a></em>\r\n\r\n<a href=\"http://Read more at http://thebeloitpod.libsyn.com/#whdvA30szF376q3g.99\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','WADR Morning Show for 9-11-2015','','inherit','open','open','','517-revision-v1','','','2015-09-11 14:46:14','2015-09-11 14:46:14','',517,'http://thebeloitpod.com/wordpress1/index.php/2015/09/11/517-revision-v1/',0,'revision','',0),(523,1,'2015-10-06 17:37:21','2015-10-06 17:37:21',' \r\n\r\n<img src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xfa1/v/t1.0-9/10641109_1553785251521232_442941879205957037_n.jpg?oh=da44d7e2a0f62973189bd10401ac3c78&oe=56974694\" alt=\"\" width=\"300\" height=\"205\" />Today on the WADR Morning Show with Reese Wood we talk to Edie Baran, host of Janesville Community Radio\'s Art Spark and Courageous Conversations.\r\n\r\n \r\n\r\n<em>Todays Links</em>\r\n\r\n<em><a href=\"https://www.facebook.com/artsparkwithediebaran?fref=ts\" target=\"_blank\">Facebook.com-Art Spark</a></em>\r\n\r\n<em><a href=\"http://www.datrockco.org/\" target=\"_blank\">Diversity Action Team at www.datrockco.org</a></em>\r\n\r\n<em><a href=\"http://www.vsawis.org/\">VSA Wisconsin at www.vsawis.org/</a></em>\r\n\r\n<em><a href=\"http://spotlightonkids.wix.com/spotlightonkidshome\" target=\"_blank\">SpotLight On Kids Theater</a></em>\r\nRead more at thebeloitpod.libsyn.com','WADR Morning Show 2nd Hour with Edie Baran','','publish','open','open','','wadr-morning-show-2nd-hour-with-edie-baran','','','2015-10-06 17:37:21','2015-10-06 17:37:21','',0,'http://thebeloitpod.com/wordpress1/?p=523',0,'post','',0),(520,1,'2015-09-11 18:08:35','2015-09-11 18:08:35',' \r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/09/Kyle-Weaver.jpg\"><img class=\"aligncenter size-medium wp-image-521\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/09/Kyle-Weaver-300x194.jpg\" alt=\"Kyle-Weaver\" width=\"300\" height=\"194\" /></a>\r\n\r\n \r\n\r\n<span style=\"font-weight: 400;\">Today on the Beloit Podcast were talking to Beloits own Kyle Weaver. Kyle is someone with an obvious dedication and drive to stay busy doing what he loves the most, which is exactly what were use to at the beloit podcast.Here’s another busy person I was lucky to catch up with for a few minutes. Lets welcome Kyle to the Beloit podcast! </span>','Kyle Weaver','','publish','open','open','','kyle-weaver','','','2015-09-11 18:08:35','2015-09-11 18:08:35','',0,'http://thebeloitpod.com/wordpress1/?p=520',0,'post','',0),(521,1,'2015-09-11 18:07:04','2015-09-11 18:07:04','','Kyle-Weaver','','inherit','open','open','','kyle-weaver','','','2015-09-11 18:07:04','2015-09-11 18:07:04','',520,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/09/Kyle-Weaver.jpg',0,'attachment','image/jpeg',0),(522,1,'2015-09-11 18:08:35','2015-09-11 18:08:35',' \r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/09/Kyle-Weaver.jpg\"><img class=\"aligncenter size-medium wp-image-521\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/09/Kyle-Weaver-300x194.jpg\" alt=\"Kyle-Weaver\" width=\"300\" height=\"194\" /></a>\r\n\r\n \r\n\r\n<span style=\"font-weight: 400;\">Today on the Beloit Podcast were talking to Beloits own Kyle Weaver. Kyle is someone with an obvious dedication and drive to stay busy doing what he loves the most, which is exactly what were use to at the beloit podcast.Here’s another busy person I was lucky to catch up with for a few minutes. Lets welcome Kyle to the Beloit podcast! </span>','Kyle Weaver','','inherit','open','open','','520-revision-v1','','','2015-09-11 18:08:35','2015-09-11 18:08:35','',520,'http://thebeloitpod.com/wordpress1/index.php/2015/09/11/520-revision-v1/',0,'revision','',0),(524,1,'2015-10-06 17:37:21','2015-10-06 17:37:21',' \r\n\r\n<img src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xfa1/v/t1.0-9/10641109_1553785251521232_442941879205957037_n.jpg?oh=da44d7e2a0f62973189bd10401ac3c78&oe=56974694\" alt=\"\" width=\"300\" height=\"205\" />Today on the WADR Morning Show with Reese Wood we talk to Edie Baran, host of Janesville Community Radio\'s Art Spark and Courageous Conversations.\r\n\r\n \r\n\r\n<em>Todays Links</em>\r\n\r\n<em><a href=\"https://www.facebook.com/artsparkwithediebaran?fref=ts\" target=\"_blank\">Facebook.com-Art Spark</a></em>\r\n\r\n<em><a href=\"http://www.datrockco.org/\" target=\"_blank\">Diversity Action Team at www.datrockco.org</a></em>\r\n\r\n<em><a href=\"http://www.vsawis.org/\">VSA Wisconsin at www.vsawis.org/</a></em>\r\n\r\n<em><a href=\"http://spotlightonkids.wix.com/spotlightonkidshome\" target=\"_blank\">SpotLight On Kids Theater</a></em>\r\nRead more at thebeloitpod.libsyn.com','WADR Morning Show 2nd Hour with Edie Baran','','inherit','open','open','','523-revision-v1','','','2015-10-06 17:37:21','2015-10-06 17:37:21','',523,'http://thebeloitpod.com/wordpress1/index.php/2015/10/06/523-revision-v1/',0,'revision','',0),(525,1,'2015-10-07 18:07:46','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-10-07 18:07:46','0000-00-00 00:00:00','',0,'http://thebeloitpod.com/wordpress1/?p=525',0,'post','',0),(526,1,'2015-10-07 18:15:06','2015-10-07 18:15:06','<img src=\"http://usfca.org/portals/0/Users/154/66/666/brian.jpg\" alt=\"\" width=\"250\" height=\"303\" />Today on the WADR Morning show we\'re discussing fencing and literature with Brian Duckwitz. Brian is a fencing expert,a Coach and advisor with the Sabre Rattlers Fencing Club, as well as certified with the United States Fencing Association.\r\nRead more at thebeloitpod.libsyn.com','WADR Morning Show 2nd Hour with Brian Duckwitz','','publish','open','open','','wadr-morning-show-2nd-hour-with-brian-duckwitz','','','2015-10-07 18:15:06','2015-10-07 18:15:06','',0,'http://thebeloitpod.com/wordpress1/?p=526',0,'post','',0),(527,1,'2015-10-07 18:15:06','2015-10-07 18:15:06','<img src=\"http://usfca.org/portals/0/Users/154/66/666/brian.jpg\" alt=\"\" width=\"250\" height=\"303\" />Today on the WADR Morning show we\'re discussing fencing and literature with Brian Duckwitz. Brian is a fencing expert,a Coach and advisor with the Sabre Rattlers Fencing Club, as well as certified with the United States Fencing Association.\r\nRead more at thebeloitpod.libsyn.com','WADR Morning Show 2nd Hour with Brian Duckwitz','','inherit','open','open','','526-revision-v1','','','2015-10-07 18:15:06','2015-10-07 18:15:06','',526,'http://thebeloitpod.com/wordpress1/index.php/2015/10/07/526-revision-v1/',0,'revision','',0),(304,1,'2015-08-08 14:59:38','2015-08-08 14:59:38','<div class=\"postbox\">\r\n<div class=\"inside\">\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/SUPPORT.png\"><img class=\"aligncenter size-medium wp-image-305\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/SUPPORT-300x250.png\" alt=\"SUPPORT\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\n</div>\r\n</div>\r\n<form action=\"http://thebeloitpod.com/wordpress1/wp-admin/options-general.php?page=wordpress-paypal-shopping-cart\" method=\"post\"></form>','Check Out','','publish','closed','open','','check-out','','','2015-08-08 16:27:56','2015-08-08 16:27:56','',0,'http://thebeloitpod.com/wordpress1/?page_id=304',7,'page','',0),(305,1,'2015-08-08 14:59:31','2015-08-08 14:59:31','','SUPPORT','','inherit','closed','open','','support','','','2015-08-08 14:59:31','2015-08-08 14:59:31','',304,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/SUPPORT.png',0,'attachment','image/png',0),(306,1,'2015-08-08 14:59:38','2015-08-08 14:59:38','<div class=\"postbox\">\r\n<div class=\"inside\">\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/SUPPORT.png\"><img class=\"aligncenter size-medium wp-image-305\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/SUPPORT-300x250.png\" alt=\"SUPPORT\" width=\"300\" height=\"250\" /></a>\r\n\r\n[show_wp_shopping_cart]\r\n\r\n</div>\r\n</div>\r\n<form action=\"http://thebeloitpod.com/wordpress1/wp-admin/options-general.php?page=wordpress-paypal-shopping-cart\" method=\"post\">\r\n<div class=\"postbox\"></div>\r\n</form>','Check Out','','inherit','closed','open','','304-revision-v1','','','2015-08-08 14:59:38','2015-08-08 14:59:38','',304,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/304-revision-v1/',0,'revision','',0),(307,0,'2015-08-08 15:00:51','2015-08-08 15:00:51','','307','','trash','closed','open','','wpsc-cart-order-2','','','2015-08-08 15:00:51','2015-08-08 15:00:51','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/wpsc-cart-order-2/',0,'wpsc_cart_orders','',0),(309,0,'2015-08-08 15:28:22','2015-08-08 15:28:22','','309','','trash','closed','open','','wpsc-cart-order-3','','','2015-08-08 15:28:22','2015-08-08 15:28:22','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/wpsc-cart-order-3/',0,'wpsc_cart_orders','',0),(508,1,'2015-09-08 16:19:21','2015-09-08 16:19:21','Today\'s podcast is a repeat from the WADR Morning show. Dont forget you can chat with me every morning 7AM-8AM at <a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 1035 LPFM Mornings with Reese Wood on Facebook.</a> If you check todays bonus content below you will find the slide presentation I used for this mornings live show. Thanks for staying tuned!\r\n\r\n<a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecomunityradio.com</a>\r\n<a href=\"http://thebeloitpod.libsyn.com/\">Read more at http://thebeloitpod.libsyn.com</a>','WADR Mornings Live! 9/8/2015','','inherit','open','open','','507-revision-v1','','','2015-09-08 16:19:21','2015-09-08 16:19:21','',507,'http://thebeloitpod.com/wordpress1/index.php/2015/09/08/507-revision-v1/',0,'revision','',0),(312,1,'2015-08-08 15:36:20','2015-08-08 15:36:20','','Activity','','inherit','closed','open','','10-revision-v1','','','2015-08-08 15:36:20','2015-08-08 15:36:20','',10,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/10-revision-v1/',0,'revision','',0),(321,1,'2015-08-08 16:27:56','2015-08-08 16:27:56','<div class=\"postbox\">\r\n<div class=\"inside\">\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/SUPPORT.png\"><img class=\"aligncenter size-medium wp-image-305\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/SUPPORT-300x250.png\" alt=\"SUPPORT\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\n</div>\r\n</div>\r\n<form action=\"http://thebeloitpod.com/wordpress1/wp-admin/options-general.php?page=wordpress-paypal-shopping-cart\" method=\"post\"></form>','Check Out','','inherit','closed','open','','304-revision-v1','','','2015-08-08 16:27:56','2015-08-08 16:27:56','',304,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/304-revision-v1/',0,'revision','',0),(313,1,'2015-08-08 15:48:07','2015-08-08 15:48:07','If you scroll through the episodes you will notice some episodes contain extra/bonus content. From this day on ALL extra/bonus content will be posted in the Members area of thebeloitpod.com. I am now doing this to give exclusive incentives to listeners who would like to support the show. For listeners who would like to support the show for one month you can go to the store and sign up for the \"Explorers\" membership. Or you can support the show for a year of content when you sign up as a TBP \"Pioneer\". Both memberships are negotiable prices!!! That\'s right, if you contact me and negotiate a price that you can afford you and I will work out a membership of your choice. Also if you can find anywhere else on the web where you can become a member of any club, podcast, subscription of any kind, and at a NEGOTIABLE rate, I will give you one free year of TBP membership. Do you have to pay to keep getting the free daily episodes? No! Daily episodes will continue to be free. Memberships are for listeners who enjoy and benefit from the show and would like to show their support. Thanks to everyone who has continued to support TBP so far!\r\n\r\n-Reese Wood\r\n\r\nTBP Explorer Membership\r\n$0.00(Negotiable)\r\nBecome a TBP member for one month (30 days). Price is negotiable, all you have to do is send an amount that you would like to contribute to TBP and our monthly money-bomb. You can search the entire web, I do not think you will find another podcast that negotiates membership prices. TBP will do this! Let me know what you can afford and remember honesty is a powerful thing! Thanks for supporting The Beloit Podcast!\r\n\r\nTBP Pioneers Membership\r\n$0.00(Negotialbe)\r\nOne year of TBP membership, just as with the monthly memberhship prices are negotialbe. Annual membership is for those who would like to help TBP remain on the web, this is a way you can support the show.','Memberships and Bonus Content','','inherit','closed','open','','252-revision-v1','','','2015-08-08 15:48:07','2015-08-08 15:48:07','',252,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/252-revision-v1/',0,'revision','',0),(513,1,'2015-09-09 20:58:36','2015-09-09 20:58:36','Today were sitting down with an old friend of mine from my days at Beloit Memorial HS Josh Meyers. Josh is a solo musician also known as JC Star. Were going to catch up with Josh and see what he’s been busy working on as a solo artist. I wanted to do this interview because, like other past guest, this guy stays productive and busy! Lets welcome JC Star to the Beloit Podcast.\r\n\r\n \r\n\r\n<strong><em>Todays Links</em></strong>\r\n\r\n<em><a href=\"https://soundcloud.com/jc-star\" target=\"_blank\">soundcloud.com jc-star</a></em>\r\n\r\n<em><a href=\"https://itunes.apple.com/us/album/jc-star-music/id866458434\" target=\"_blank\">itunes.apple.com- JC Star Music</a></em>\r\n\r\n<em><a href=\"https://www.facebook.com/JCStarOfficial/info?tab=page_info\" target=\"_blank\">JC Star Official on Facebook</a></em>\r\nRead more at http://thebeloitpod.libsyn.com/jc-star#aXwBL1uxrpGdOosL.99','JC Star Music','','inherit','open','open','','511-revision-v1','','','2015-09-09 20:58:36','2015-09-09 20:58:36','',511,'http://thebeloitpod.com/wordpress1/index.php/2015/09/09/511-revision-v1/',0,'revision','',0),(315,1,'2015-08-08 16:11:48','2015-08-08 16:11:48','','money-timebomb3','','inherit','closed','open','','money-timebomb3','','','2015-08-08 16:11:48','2015-08-08 16:11:48','',48,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/money-timebomb3.jpg',0,'attachment','image/jpeg',0),(316,1,'2015-08-08 16:16:34','2015-08-08 16:16:34','','THE BELOIT PODCAST MONTHLY MONEYBOMB','','inherit','closed','open','','the-beloit-podcast-monthly-moneybomb','','','2015-08-08 16:16:34','2015-08-08 16:16:34','',48,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB.png',0,'attachment','image/png',0),(317,1,'2015-08-08 16:16:39','2015-08-08 16:16:39','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB.png\"><img class=\"aligncenter size-medium wp-image-316\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-300x250.png\" alt=\"THE BELOIT PODCAST MONTHLY MONEYBOMB\" width=\"300\" height=\"250\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/money-timebomb3.jpg\">\r\n</a>Donations/Subscriptions/& The Money Bomb- This is where you can enter the monthly money-bomb! You can donate or sign up to be a member at a price that I am willing to negotiate.You can donate or become a paid member by contacting me through this form. Once you have made your donation/purchase of membership you will have access to bonus content and exclusive incentives.Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Thanks for supporting TBP and our community!\r\n[si-contact-form form=\'1\']','Money Bomb','','inherit','closed','open','','48-revision-v1','','','2015-08-08 16:16:39','2015-08-08 16:16:39','',48,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/48-revision-v1/',0,'revision','',0),(318,1,'2015-08-08 16:20:49','2015-08-08 16:20:49','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB.png\"><img class=\"aligncenter size-medium wp-image-316\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-300x250.png\" alt=\"THE BELOIT PODCAST MONTHLY MONEYBOMB\" width=\"300\" height=\"250\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/money-timebomb3.jpg\">\r\n</a>Donations/Subscriptions/& The Money Bomb- This is where you can enter the monthly money-bomb! You can donate or sign up to be a member at a price that I am willing to negotiate.You can donate or become a paid member by contacting me through this form. Once you have made your donation/purchase of membership you will have access to bonus content and exclusive incentives.Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Thanks for supporting TBP and our community!','Money Bomb','','inherit','closed','open','','48-revision-v1','','','2015-08-08 16:20:49','2015-08-08 16:20:49','',48,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/48-revision-v1/',0,'revision','',0),(516,1,'2015-09-10 15:54:09','2015-09-10 15:54:09','Did you miss this mornings live show? Here is the repeat! Catch up on all of Janesvilles current news and events. Also I will be covering other news relevant to our area and playing music during chat breaks. I have one more episode on the way for Friday to finish off the week plus I will be posting Fridays Morning show repeat. Thanks for tuning in!\r\n\r\n \r\n\r\n<img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xfp1/v/t1.0-9/1621919_10203713391103348_6510894292860503835_n.jpg?oh=40f66e695a24492dbbaff806d4fca96b&oe=5665E88A\" alt=\"\" width=\"300\" height=\"168\" />\r\n\r\nTodays Links\r\n\r\n<a href=\"https://www.facebook.com/WADR-1035-LPFM-Mornings-with-Reese-Wood-1706069986295864/timeline/\" target=\"_blank\">WADR-1035-LPFM-Mornings-with-Reese-Wood on Facebook</a>\r\n\r\n<a href=\"https://www.facebook.com/janesvillecommunityradio?fref=ts\" target=\"_blank\">Janesville community radio on Facebook</a>\r\n\r\n<a href=\"https://play.google.com/store/apps/details?id=air.caster.fm.wadrlpfm\" target=\"_blank\">WADR App on Google play- for android</a>\r\n\r\n<a href=\"https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=986932444&mt=8\" target=\"_blank\">WADR App on Itunes</a>\r\n\r\n<a href=\"http://janesvillecommunityradio.com/listen-live/\" target=\"_blank\">janesvillecommunityradio.com/listen-live/- Listen Live on the Web</a>\r\n\r\n<a href=\"http://Read more at http://thebeloitpod.libsyn.com/#ARgR4XU3o7Ij5cVf.99\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','The WADR Morning Show on 103.5 FM Janesville Community Radio','','inherit','open','open','','515-revision-v1','','','2015-09-10 15:54:09','2015-09-10 15:54:09','',515,'http://thebeloitpod.com/wordpress1/index.php/2015/09/10/515-revision-v1/',0,'revision','',0),(517,1,'2015-09-11 14:46:14','2015-09-11 14:46:14','Todays WADR Morning show repeat is now out! Here is all todays local news, today in history, other news, and everything Janesville Community Radio!\r\n\r\n<em>Todays links</em>\r\n\r\n<em><a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecommunityradio.com/</a></em>\r\n\r\n<a href=\"http://Read more at http://thebeloitpod.libsyn.com/#whdvA30szF376q3g.99\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','WADR Morning Show for 9-11-2015','','publish','open','open','','wadr-morning-show-for-9-11-2015','','','2015-09-11 14:46:14','2015-09-11 14:46:14','',0,'http://thebeloitpod.com/wordpress1/?p=517',0,'post','',0),(320,1,'2015-08-08 16:23:39','2015-08-08 16:23:39','','320','','trash','closed','open','','wpsc-cart-order-4','','','2015-08-08 16:23:39','2015-08-08 16:23:39','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/wpsc-cart-order-4/',0,'wpsc_cart_orders','',0),(515,1,'2015-09-10 15:54:09','2015-09-10 15:54:09','Did you miss this mornings live show? Here is the repeat! Catch up on all of Janesvilles current news and events. Also I will be covering other news relevant to our area and playing music during chat breaks. I have one more episode on the way for Friday to finish off the week plus I will be posting Fridays Morning show repeat. Thanks for tuning in!\r\n\r\n \r\n\r\n<img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xfp1/v/t1.0-9/1621919_10203713391103348_6510894292860503835_n.jpg?oh=40f66e695a24492dbbaff806d4fca96b&oe=5665E88A\" alt=\"\" width=\"300\" height=\"168\" />\r\n\r\nTodays Links\r\n\r\n<a href=\"https://www.facebook.com/WADR-1035-LPFM-Mornings-with-Reese-Wood-1706069986295864/timeline/\" target=\"_blank\">WADR-1035-LPFM-Mornings-with-Reese-Wood on Facebook</a>\r\n\r\n<a href=\"https://www.facebook.com/janesvillecommunityradio?fref=ts\" target=\"_blank\">Janesville community radio on Facebook</a>\r\n\r\n<a href=\"https://play.google.com/store/apps/details?id=air.caster.fm.wadrlpfm\" target=\"_blank\">WADR App on Google play- for android</a>\r\n\r\n<a href=\"https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=986932444&mt=8\" target=\"_blank\">WADR App on Itunes</a>\r\n\r\n<a href=\"http://janesvillecommunityradio.com/listen-live/\" target=\"_blank\">janesvillecommunityradio.com/listen-live/- Listen Live on the Web</a>\r\n\r\n<a href=\"http://Read more at http://thebeloitpod.libsyn.com/#ARgR4XU3o7Ij5cVf.99\" target=\"_blank\">Read more at http://thebeloitpod.libsyn.com</a>','The WADR Morning Show on 103.5 FM Janesville Community Radio','','publish','open','open','','the-wadr-morning-show-on-103-5-fm-janesville-community-radio','','','2015-09-10 15:54:09','2015-09-10 15:54:09','',0,'http://thebeloitpod.com/wordpress1/?p=515',0,'post','',0),(323,0,'2015-08-08 20:00:13','2015-08-08 20:00:13','','323','','trash','closed','open','','wpsc-cart-order-5','','','2015-08-08 20:00:13','2015-08-08 20:00:13','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/wpsc-cart-order-5/',0,'wpsc_cart_orders','',0),(324,0,'2015-08-08 20:01:15','2015-08-08 20:01:15','','324','','trash','closed','open','','wpsc-cart-order-6','','','2015-08-08 20:01:15','2015-08-08 20:01:15','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/wpsc-cart-order-6/',0,'wpsc_cart_orders','',0),(325,1,'2015-08-08 20:23:07','2015-08-08 20:23:07','Welcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\r\n\r\n[bbp-forum-index]\r\n\r\n[custom-facebook-feed]','Forum','','inherit','closed','open','','82-revision-v1','','','2015-08-08 20:23:07','2015-08-08 20:23:07','',82,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/82-revision-v1/',0,'revision','',0),(326,1,'2015-08-08 20:48:05','2015-08-08 20:48:05','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB.png\"><img class=\"aligncenter size-medium wp-image-316\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-300x250.png\" alt=\"THE BELOIT PODCAST MONTHLY MONEYBOMB\" width=\"300\" height=\"250\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/money-timebomb3.jpg\">\r\n</a>Donations/Subscriptions/& The Money Bomb- This is where you can enter the monthly money-bomb! You can donate or sign up to be a member at a price that I am willing to negotiate.You can donate or become a paid member by contacting me through this form. Once you have made your donation/purchase of membership you will have access to bonus content and exclusive incentives.Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Thanks for supporting TBP and our community!\r\n\r\n[si-contact-form form=\'1\']','Money Bomb','','inherit','closed','open','','48-revision-v1','','','2015-08-08 20:48:05','2015-08-08 20:48:05','',48,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/48-revision-v1/',0,'revision','',0),(327,1,'2015-08-08 20:51:41','2015-08-08 20:51:41','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB.png\"><img class=\"aligncenter size-medium wp-image-316\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCAST-MONTHLY-MONEYBOMB-300x250.png\" alt=\"THE BELOIT PODCAST MONTHLY MONEYBOMB\" width=\"300\" height=\"250\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/money-timebomb3.jpg\">\r\n</a>Donations/Subscriptions/& The Money Bomb- This is where you can enter the monthly money-bomb! You can donate or become a paid member by contacting me through this form. Once you have made your donation/purchase of membership you will have access to bonus content and exclusive incentives.Remember when you sign up or donate, your money will go 50% to support the show and 50% to a member or family living in our community. At the end of every month I will draw one name from all the entries we get. This means the more the better for everyone! A few dollars can do magic every month for a member of our community who might very well be in need, but anyone who enters is eligible. Let me know how you would like to donate/purchase and I will respond to you immediately! Remember I can negotiate a price, and honesty is a powerful thing! I will accept any form of payment including: Cash (in person if preferred) Debit/Credit Paypal Bitcoin and I will even negotiate for silver and copper coins for those who still appreciate the value! Just fill out the form below, send me all the details you would like to work out and we\'ll see what we can do! Thanks for supporting TBP and our community!\r\n\r\n[si-contact-form form=\'1\']','Money Bomb','','inherit','closed','open','','48-revision-v1','','','2015-08-08 20:51:41','2015-08-08 20:51:41','',48,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/48-revision-v1/',0,'revision','',0),(328,1,'2015-08-08 21:13:37','2015-08-08 21:13:37','','FORUMBANNER','','inherit','closed','open','','forumbanner','','','2015-08-08 21:13:37','2015-08-08 21:13:37','',82,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png',0,'attachment','image/png',0),(329,1,'2015-08-23 03:13:55','2015-08-23 03:13:55','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast-Forum.jpg\"><img class=\"aligncenter wp-image-475\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast-Forum-300x37.jpg\" alt=\"The Beloit Podcast Forum\" width=\"809\" height=\"100\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\">\n</a>\nWelcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\n[bbp-forum-index]\n[custom-facebook-feed]\n<a class=\"twitter-timeline\" href=\"https://twitter.com/thebeloitpod\" data-widget-id=\"635284292143153152\">Tweets by @thebeloitpod</a>\n<script type=\"mce-no/type\">// <![CDATA[\n!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?\'http\':\'https\';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+\"://platform.twitter.com/widgets.js\";fjs.parentNode.insertBefore(js,fjs);}}(document,\"script\",\"twitter-wjs\");\n// ]]></script>','Forum','','inherit','closed','open','','82-autosave-v1','','','2015-08-23 03:13:55','2015-08-23 03:13:55','',82,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/82-autosave-v1/',0,'revision','',0),(334,1,'2015-08-08 21:50:34','2015-08-08 21:50:34','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\">\r\n</a>Welcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\r\n<!--VASTHTML--> or [forumServer]\r\n\r\n[custom-facebook-feed]\r\n ','Forum','','inherit','closed','open','','82-revision-v1','','','2015-08-08 21:50:34','2015-08-08 21:50:34','',82,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/82-revision-v1/',0,'revision','',0),(330,1,'2015-08-08 21:15:03','2015-08-08 21:15:03','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\">\r\n</a>Welcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\r\n\r\n[bbp-forum-index]\r\n\r\n[custom-facebook-feed]','Forum','','inherit','closed','open','','82-revision-v1','','','2015-08-08 21:15:03','2015-08-08 21:15:03','',82,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/82-revision-v1/',0,'revision','',0),(507,1,'2015-09-08 16:19:21','2015-09-08 16:19:21','Today\'s podcast is a repeat from the WADR Morning show. Dont forget you can chat with me every morning 7AM-8AM at <a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 1035 LPFM Mornings with Reese Wood on Facebook.</a> If you check todays bonus content below you will find the slide presentation I used for this mornings live show. Thanks for staying tuned!\r\n\r\nLink to this mornings slide presentation- <a href=\"https://docs.google.com/presentation/d/1FZqCODoMIy5Om1-skhmAqcishIRUzUTzIbvxILZU6N0/edit?usp=sharing\" target=\"_blank\">WADR Mornings Live! 9/8/15 </a>\r\n\r\n<a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecomunityradio.com</a>\r\n<a href=\"http://thebeloitpod.libsyn.com/\">Read more at http://thebeloitpod.libsyn.com</a>','WADR Mornings Live! 9/8/2015','','publish','open','open','','wadr-mornings-live-982015','','','2015-09-08 16:27:47','2015-09-08 16:27:47','',0,'http://thebeloitpod.com/wordpress1/?p=507',0,'post','',0),(333,1,'2015-08-08 21:44:03','2015-08-08 21:44:03','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\">\r\n</a>Welcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\r\n\r\n<code><!--VASTHTML--></code> or <code>[forumServer]</code>\r\n\r\n[custom-facebook-feed]','Forum','','inherit','closed','open','','82-revision-v1','','','2015-08-08 21:44:03','2015-08-08 21:44:03','',82,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/82-revision-v1/',0,'revision','',0),(335,1,'2015-08-08 21:51:47','2015-08-08 21:51:47','','THE BELOIT PODCASTFORUM','','inherit','closed','open','','the-beloit-podcastforum','','','2015-08-08 21:51:47','2015-08-08 21:51:47','',82,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCASTFORUM.png',0,'attachment','image/png',0),(337,1,'2015-08-08 21:58:42','2015-08-08 21:58:42','<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCASTFORUM-300x169.png\" alt=\"THE BELOIT PODCASTFORUM\" width=\"300\" height=\"169\" class=\"aligncenter size-medium wp-image-335\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\">\r\n</a>\r\nWelcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\r\n<!--VASTHTML--> or [forumServer]\r\n\r\n[custom-facebook-feed]\r\n ','Forum','','inherit','closed','open','','82-revision-v1','','','2015-08-08 21:58:42','2015-08-08 21:58:42','',82,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/82-revision-v1/',0,'revision','',0),(336,1,'2015-08-08 21:52:06','2015-08-08 21:52:06','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCASTFORUM.png\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCASTFORUM-300x169.png\" alt=\"THE BELOIT PODCASTFORUM\" width=\"300\" height=\"169\" class=\"aligncenter size-medium wp-image-335\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\">\r\n</a>Welcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\r\n<!--VASTHTML--> or [forumServer]\r\n\r\n[custom-facebook-feed]\r\n ','Forum','','inherit','closed','open','','82-revision-v1','','','2015-08-08 21:52:06','2015-08-08 21:52:06','',82,'http://thebeloitpod.com/wordpress1/index.php/2015/08/08/82-revision-v1/',0,'revision','',0),(423,1,'2015-08-17 02:48:15','2015-08-17 02:48:15','','Were Live right now! Click the Live! page','','inherit','open','open','','422-revision-v1','','','2015-08-17 02:48:15','2015-08-17 02:48:15','',422,'http://thebeloitpod.com/wordpress1/index.php/2015/08/17/422-revision-v1/',0,'revision','',0),(340,1,'2015-08-09 00:17:34','2015-08-09 00:17:34','<img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/THE-BELOIT-PODCASTFORUM-300x169.png\" alt=\"THE BELOIT PODCASTFORUM\" width=\"300\" height=\"169\" class=\"aligncenter size-medium wp-image-335\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\">\r\n</a>\r\nWelcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\r\n[bbp-forum-index]\r\n[custom-facebook-feed]\r\n ','Forum','','inherit','closed','open','','82-revision-v1','','','2015-08-09 00:17:34','2015-08-09 00:17:34','',82,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/82-revision-v1/',0,'revision','',0),(341,1,'2015-08-09 14:57:56','2015-08-09 14:57:56','<iframe src=\"//www.youtube.com/embed/wnjBV7O66YA\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Live!','','publish','closed','open','','live','','','2015-08-24 01:33:08','2015-08-24 01:33:08','',0,'http://thebeloitpod.com/wordpress1/?page_id=341',0,'page','',1),(342,1,'2015-08-09 14:57:56','2015-08-09 14:57:56','','Live!','','inherit','closed','open','','341-revision-v1','','','2015-08-09 14:57:56','2015-08-09 14:57:56','',341,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/341-revision-v1/',0,'revision','',0),(343,1,'2015-08-09 15:05:03','2015-08-09 15:05:03','<script data-mute=\"false\" data-social=\"true\" class=\"mkEmbedPlayer\" data-cover=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xta1/v/t1.0-9/11800111_954739591236223_5883542626247332916_n.jpg?oh=105466e6432b05164df269ac21147629&oe=564970A4\" data-type=\"bigsquare\" data-username=\"reesewood1000582\" src=\"http://meerkatapp.co/widgets/embed.js\" type=\"text/javascript\"></scrip','Live!','','inherit','closed','open','','341-revision-v1','','','2015-08-09 15:05:03','2015-08-09 15:05:03','',341,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/341-revision-v1/',0,'revision','',0),(344,1,'2015-08-09 16:07:42','2015-08-09 16:07:42','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img class=\"aligncenter size-medium wp-image-347\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" /></a>\r\n\r\nThis Monday I am opening the phone lines and taking your calls.The number is 1-302-202-1098. I encourage you to join me Monday morning as I enjoy some coffee! I will have the phone lines open from 7am-9:30. Check in just to say hello to the rest of our community and wish everyone a healthy and positive week or if you have information you would like to share with the Beloit community just call in and you will be live on the air with me as we stream at <a href=\"https://meerkatapp.co/reesewood1000582\">Meerkat!</a> You can visit the Live! page right here at thebeloitpod.com and watch live video of me taking your calls. You can get the Meerkat App for your mobile/smart device to join or just watch. I believe you are also able to comment on the Meerkat stream, so this should be a great way for everyone to communicate in a variety of ways as we kick off our week!\r\n\r\nAfter the show is finished I will post it as an episode for the rest of our listeners to catch later at a different time.\r\n\r\n<strong>Heres the number to call- 1-302-202-1098</strong>\r\n\r\nWhen you call enter the code 8547351\r\n\r\n<a href=\"https://meerkatapp.co/reesewood1000582\" target=\"_blank\">Heres the live feed on Meerkat</a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/live/\" target=\"_blank\">The Beloit Podcast Live Page is here!</a>','Monday Morning Live! Join me from 7am-9:30 for TBP\'s 1st live morning show!','','publish','closed','open','','monday-morning-live-join-me-from-7am-930-for-tbps-1st-live-morning-show','','\nhttp://thebeloitpod.com/wordpress1/index.php/live/','2015-08-09 17:27:57','2015-08-09 17:27:57','',0,'http://thebeloitpod.com/wordpress1/?p=344',0,'post','',0),(345,1,'2015-08-09 16:07:42','2015-08-09 16:07:42','This Monday I am opening the phone lines and taking your calls.The number is 1-302-202-1098. I encourage you to join me Monday morning as I enjoy some coffee! I will have the phone lines open from 7am-9:30. Check in just to say hello to the rest of our community and wish everyone a healthy and positive week or if you have information you would like to share with the Beloit community just call in and you will be live on the air with me as we stream at <a href=\"https://meerkatapp.co/reesewood1000582\">Meerkat!</a> You can visit the Live! page right here at thebeloitpod.com and watch live video of me taking your calls. You can get the Meerkat App for your mobile/smart device to join or just watch. I believe you are also able to comment on the Meerkat stream, so this should be a great way for everyone to communicate in a variety of ways as we kick off our week!\r\n\r\n<strong>Heres the number to call- 1-302-202-1098</strong>\r\n\r\nWhen you call enter the code 8547351\r\n\r\n<a href=\"https://meerkatapp.co/reesewood1000582\" target=\"_blank\">Heres the live feed on Meerkat</a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/live/\" target=\"_blank\">The Beloit Podcast Live Page is here!</a>','Monday Morning Live! Join me from 7am-9:30 for TBP\'s 1st live morning show!','','inherit','closed','open','','344-revision-v1','','','2015-08-09 16:07:42','2015-08-09 16:07:42','',344,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/344-revision-v1/',0,'revision','',0),(346,1,'2015-08-09 17:27:23','2015-08-09 17:27:23','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img class=\"aligncenter size-medium wp-image-347\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" /></a>\n\nThis Monday I am opening the phone lines and taking your calls.The number is 1-302-202-1098. I encourage you to join me Monday morning as I enjoy some coffee! I will have the phone lines open from 7am-9:30. Check in just to say hello to the rest of our community and wish everyone a healthy and positive week or if you have information you would like to share with the Beloit community just call in and you will be live on the air with me as we stream at <a href=\"https://meerkatapp.co/reesewood1000582\">Meerkat!</a> You can visit the Live! page right here at thebeloitpod.com and watch live video of me taking your calls. You can get the Meerkat App for your mobile/smart device to join or just watch. I believe you are also able to comment on the Meerkat stream, so this should be a great way for everyone to communicate in a variety of ways as we kick off our week!\n\nAfter the show is\n\n<strong>Heres the number to call- 1-302-202-1098</strong>\n\nWhen you call enter the code 8547351\n\n<a href=\"https://meerkatapp.co/reesewood1000582\" target=\"_blank\">Heres the live feed on Meerkat</a>\n\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/live/\" target=\"_blank\">The Beloit Podcast Live Page is here!</a>','Monday Morning Live! Join me from 7am-9:30 for TBP\'s 1st live morning show!','','inherit','closed','open','','344-autosave-v1','','','2015-08-09 17:27:23','2015-08-09 17:27:23','',344,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/344-autosave-v1/',0,'revision','',0),(347,1,'2015-08-09 16:25:17','2015-08-09 16:25:17','','THE BELOIT PODCAST MORNING SHOW LIVE!','','inherit','closed','open','','the-beloit-podcast-morning-show-live','','','2015-08-09 16:25:17','2015-08-09 16:25:17','',344,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png',0,'attachment','image/png',0),(348,1,'2015-08-09 16:25:51','2015-08-09 16:25:51','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img class=\"aligncenter size-medium wp-image-347\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" /></a>\r\n\r\nThis Monday I am opening the phone lines and taking your calls.The number is 1-302-202-1098. I encourage you to join me Monday morning as I enjoy some coffee! I will have the phone lines open from 7am-9:30. Check in just to say hello to the rest of our community and wish everyone a healthy and positive week or if you have information you would like to share with the Beloit community just call in and you will be live on the air with me as we stream at <a href=\"https://meerkatapp.co/reesewood1000582\">Meerkat!</a> You can visit the Live! page right here at thebeloitpod.com and watch live video of me taking your calls. You can get the Meerkat App for your mobile/smart device to join or just watch. I believe you are also able to comment on the Meerkat stream, so this should be a great way for everyone to communicate in a variety of ways as we kick off our week!\r\n\r\n<strong>Heres the number to call- 1-302-202-1098</strong>\r\n\r\nWhen you call enter the code 8547351\r\n\r\n<a href=\"https://meerkatapp.co/reesewood1000582\" target=\"_blank\">Heres the live feed on Meerkat</a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/live/\" target=\"_blank\">The Beloit Podcast Live Page is here!</a>','Monday Morning Live! Join me from 7am-9:30 for TBP\'s 1st live morning show!','','inherit','closed','open','','344-revision-v1','','','2015-08-09 16:25:51','2015-08-09 16:25:51','',344,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/344-revision-v1/',0,'revision','',0),(445,1,'2015-08-20 00:09:31','2015-08-20 00:09:31','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/s_Qwg6AaN-8\" frameborder=\"0\" allowfullscreen></iframe>','Live!','','inherit','open','open','','341-revision-v1','','','2015-08-20 00:09:31','2015-08-20 00:09:31','',341,'http://thebeloitpod.com/wordpress1/index.php/2015/08/20/341-revision-v1/',0,'revision','',0),(349,1,'2015-08-09 17:27:57','2015-08-09 17:27:57','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img class=\"aligncenter size-medium wp-image-347\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" /></a>\r\n\r\nThis Monday I am opening the phone lines and taking your calls.The number is 1-302-202-1098. I encourage you to join me Monday morning as I enjoy some coffee! I will have the phone lines open from 7am-9:30. Check in just to say hello to the rest of our community and wish everyone a healthy and positive week or if you have information you would like to share with the Beloit community just call in and you will be live on the air with me as we stream at <a href=\"https://meerkatapp.co/reesewood1000582\">Meerkat!</a> You can visit the Live! page right here at thebeloitpod.com and watch live video of me taking your calls. You can get the Meerkat App for your mobile/smart device to join or just watch. I believe you are also able to comment on the Meerkat stream, so this should be a great way for everyone to communicate in a variety of ways as we kick off our week!\r\n\r\nAfter the show is finished I will post it as an episode for the rest of our listeners to catch later at a different time.\r\n\r\n<strong>Heres the number to call- 1-302-202-1098</strong>\r\n\r\nWhen you call enter the code 8547351\r\n\r\n<a href=\"https://meerkatapp.co/reesewood1000582\" target=\"_blank\">Heres the live feed on Meerkat</a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/index.php/live/\" target=\"_blank\">The Beloit Podcast Live Page is here!</a>','Monday Morning Live! Join me from 7am-9:30 for TBP\'s 1st live morning show!','','inherit','closed','open','','344-revision-v1','','','2015-08-09 17:27:57','2015-08-09 17:27:57','',344,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/344-revision-v1/',0,'revision','',0),(350,1,'2015-08-09 20:54:24','2015-08-09 20:54:24','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png\"><img class=\"aligncenter size-medium wp-image-298\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS-300x250.png\" alt=\"TBP EXPLORERS\" width=\"300\" height=\"250\" /></a>Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When purchase your membership you will have the option to choose the terms regarding negotiation of a membership.Simply choose the amount from the drop menu to select the amount you would like to exchange for a membership. Thanks for your support!\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"277KUPGS3V4KJ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Negotiate\">Negotiate</td></tr><tr><td><select name=\"os0\">\r\n <option value=\"Option 1\">Option 1 $1.00 USD</option>\r\n <option value=\"Option 2\">Option 2 $3.00 USD</option>\r\n <option value=\"Option 3\">Option 3 $5.00 USD</option>\r\n <option value=\"Option 4\">Option 4 $10.00 USD</option>\r\n</select> </td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>\r\n \r\n\r\n \r\n\r\n<hr />\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS.png\"><img class=\"aligncenter size-medium wp-image-300\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS-300x250.png\" alt=\"TBPIONEERS\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, negotiate your membership to the show for an entire year if you are ready to be a pioneer at TBP!You can choose how you would like to support the show!\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"277KUPGS3V4KJ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Negotiate\">Negotiate</td></tr><tr><td><select name=\"os0\">\r\n <option value=\"Option 1\">Option 1 $1.00 USD</option>\r\n <option value=\"Option 2\">Option 2 $3.00 USD</option>\r\n <option value=\"Option 3\">Option 3 $5.00 USD</option>\r\n <option value=\"Option 4\">Option 4 $10.00 USD</option>\r\n</select> </td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>','Support TBP','','publish','open','open','','support-tbp','','','2015-08-11 19:03:55','2015-08-11 19:03:55','',0,'http://thebeloitpod.com/wordpress1/?page_id=350',0,'page','',0),(356,1,'2015-08-09 21:11:41','2015-08-09 21:11:41','Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When you add this to your cart you will have the option to send me the details and terms regarding negotiation of a membership. Thanks for your support!\r\n\r\n[wp_cart_button name=\"TBP Explorers monthlm(30 day) membership\" price=\"1.00\"]\r\n<div class=\"postbox\"></div>\r\n \r\n\r\n<hr />\r\n\r\n \r\n\r\n \r\n\r\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, you and I can negotiate a way for you to support the show for an entire year if you are ready to be a pioneer at TBP!\r\n\r\n[wp_cart_button name=\"TBP Pioneers annual membership\" price=\"1.00\"]\r\n<div class=\"postbox\">\r\n<div class=\"inside\">\r\n\r\n[show_wp_shopping_cart]\r\n\r\n \r\n\r\n</div>\r\n</div>\r\n<form action=\"http://thebeloitpod.com/wordpress1/wp-admin/options-general.php?page=wordpress-paypal-shopping-cart\" method=\"post\">\r\n<div class=\"postbox\"></div>\r\n</form> ','Support TBP','','inherit','open','open','','350-revision-v1','','','2015-08-09 21:11:41','2015-08-09 21:11:41','',350,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/350-revision-v1/',0,'revision','',0),(352,1,'2015-08-09 20:55:20','2015-08-09 20:55:20','Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When you add this to your cart you will have the option to send me the details and terms regarding negotiation of a membership. Thanks for your support!\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png\">[wp_cart_button name=\"TBP Explorers one month membership\" price=\"Negotiable\"] <img class=\"aligncenter wp-image-298 size-medium\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS-300x250.png\" alt=\"TBP EXPLORERS\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\n<hr />\r\n\r\n \r\n\r\n<img class=\"aligncenter size-medium wp-image-300\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS-300x250.png\" alt=\"TBPIONEERS\" width=\"300\" height=\"250\" />\r\n\r\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, you and I can negotiate a way for you to support the show for an entire year if you are ready to be a pioneer at TBP!\r\n\r\n[wp_cart_button name=\"TBP Pioneers annual membership\" price=\"Negotiable\"]\r\n<div class=\"postbox\">\r\n<div class=\"inside\">\r\n\r\n[show_wp_shopping_cart]\r\n\r\n \r\n\r\n</div>\r\n</div>\r\n<form action=\"http://thebeloitpod.com/wordpress1/wp-admin/options-general.php?page=wordpress-paypal-shopping-cart\" method=\"post\">\r\n<div class=\"postbox\"></div>\r\n</form> ','Support TBP','','inherit','open','open','','350-revision-v1','','','2015-08-09 20:55:20','2015-08-09 20:55:20','',350,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/350-revision-v1/',0,'revision','',0),(351,1,'2015-08-09 20:54:24','2015-08-09 20:54:24','Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When you add this to your cart you will have the option to send me the details and terms regarding negotiation of a membership. Thanks for your support!\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png\">[wp_cart_button name=\"TBP Explorers one month membership\" price=\"Negotiable\"] <img class=\"aligncenter wp-image-298 size-medium\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS-300x250.png\" alt=\"TBP EXPLORERS\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\n<hr />\r\n\r\n \r\n\r\n<img class=\"aligncenter size-medium wp-image-300\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS-300x250.png\" alt=\"TBPIONEERS\" width=\"300\" height=\"250\" />\r\n\r\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, you and I can negotiate a way for you to support the show for an entire year if you are ready to be a pioneer at TBP!\r\n\r\n[wp_cart_button name=\"TBP Pioneers annual membership\" price=\"Negotiable\"]\r\n<div class=\"postbox\">\r\n<div class=\"inside\">\r\n\r\n[show_wp_shopping_cart]\r\n\r\n<form method=\"GET\" action=\"http://www.amazon.%TLD%/gp/aws/cart/add.html\">\r\n<input type=\"hidden\" name=\"AssociateTag\" value=\"%TAG%\"/>\r\n<input type=\"hidden\" name=\"SubscriptionId\" value=\"%PUB_KEY%\"/>\r\n<input type=\"hidden\" name=\"ASIN.1\" value=\"%ASIN%\"/>\r\n<input type=\"hidden\" name=\"Quantity.1\" value=\"1\"/>\r\n<input type=\"image\" name=\"add\" value=\"Buy from Amazon.%TLD%\" border=\"0\" alt=\"Buy from Amazon.%TLD%\" src=\"%BUY_BUTTON%\">\r\n</form>\r\n\r\n</div>\r\n</div>\r\n<form action=\"http://thebeloitpod.com/wordpress1/wp-admin/options-general.php?page=wordpress-paypal-shopping-cart\" method=\"post\">\r\n<div class=\"postbox\"></div>\r\n</form> ','Support TBP','','inherit','open','open','','350-revision-v1','','','2015-08-09 20:54:24','2015-08-09 20:54:24','',350,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/350-revision-v1/',0,'revision','',0),(353,0,'2015-08-09 20:56:45','2015-08-09 20:56:45','','353','','trash','open','open','','wpsc-cart-order-7','','','2015-08-09 20:56:45','2015-08-09 20:56:45','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/wpsc-cart-order-7/',0,'wpsc_cart_orders','',0),(354,0,'2015-08-09 21:03:14','2015-08-09 21:03:14','','354','','trash','open','open','','wpsc-cart-order-8','','','2015-08-09 21:03:14','2015-08-09 21:03:14','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/wpsc-cart-order-8/',0,'wpsc_cart_orders','',0),(355,1,'2015-08-11 19:02:56','2015-08-11 19:02:56','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png\"><img class=\"aligncenter size-medium wp-image-298\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS-300x250.png\" alt=\"TBP EXPLORERS\" width=\"300\" height=\"250\" /></a>Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When purchase your membership you will have the option to choose the terms regarding negotiation of a membership.Simply choose the amount from the drop menu to select the amount you would like to exchange for a membership. Thanks for your support!\n\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"277KUPGS3V4KJ\">\n<table>\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Negotiate\">Negotiate</td></tr><tr><td><select name=\"os0\">\n <option value=\"Option 1\">Option 1 $1.00 USD</option>\n <option value=\"Option 2\">Option 2 $3.00 USD</option>\n <option value=\"Option 3\">Option 3 $5.00 USD</option>\n <option value=\"Option 4\">Option 4 $10.00 USD</option>\n</select> </td></tr>\n</table>\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\n</form>\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\n</A>\n \n\n \n\n<hr />\n\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS.png\"><img class=\"aligncenter size-medium wp-image-300\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS-300x250.png\" alt=\"TBPIONEERS\" width=\"300\" height=\"250\" /></a>\n\n \n\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, you and I can negotiate a way for you to support the show for an entire year if you are ready to be a pioneer at TBP!\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"277KUPGS3V4KJ\">\n<table>\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Negotiate\">Negotiate</td></tr><tr><td><select name=\"os0\">\n <option value=\"Option 1\">Option 1 $1.00 USD</option>\n <option value=\"Option 2\">Option 2 $3.00 USD</option>\n <option value=\"Option 3\">Option 3 $5.00 USD</option>\n <option value=\"Option 4\">Option 4 $10.00 USD</option>\n</select> </td></tr>\n</table>\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\n</form>\n\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\n</A>','Support TBP','','inherit','open','open','','350-autosave-v1','','','2015-08-11 19:02:56','2015-08-11 19:02:56','',350,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/350-autosave-v1/',0,'revision','',0),(357,0,'2015-08-09 21:13:11','2015-08-09 21:13:11','','357','','trash','open','open','','wpsc-cart-order-9','','','2015-08-09 21:13:11','2015-08-09 21:13:11','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/wpsc-cart-order-9/',0,'wpsc_cart_orders','',0),(358,1,'2015-08-09 21:15:58','2015-08-09 21:15:58','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png\"><img class=\"aligncenter size-medium wp-image-298\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS-300x250.png\" alt=\"TBP EXPLORERS\" width=\"300\" height=\"250\" /></a>Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When you add this to your cart you will have the option to send me the details and terms regarding negotiation of a membership. Thanks for your support!\r\n\r\n[wp_cart_button name=\"TBP Explorers monthlm(30 day) membership\" price=\"1.00\"]\r\n<div class=\"postbox\"></div>\r\n \r\n\r\n<hr />\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS.png\"><img class=\"aligncenter size-medium wp-image-300\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS-300x250.png\" alt=\"TBPIONEERS\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, you and I can negotiate a way for you to support the show for an entire year if you are ready to be a pioneer at TBP!\r\n\r\n[wp_cart_button name=\"TBP Pioneers annual membership\" price=\"1.00\"]\r\n<div class=\"postbox\">\r\n<div class=\"inside\">\r\n\r\n[show_wp_shopping_cart]\r\n\r\n \r\n\r\n</div>\r\n</div>\r\n<form action=\"http://thebeloitpod.com/wordpress1/wp-admin/options-general.php?page=wordpress-paypal-shopping-cart\" method=\"post\">\r\n<div class=\"postbox\"></div>\r\n</form> ','Support TBP','','inherit','open','open','','350-revision-v1','','','2015-08-09 21:15:58','2015-08-09 21:15:58','',350,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/350-revision-v1/',0,'revision','',0),(514,1,'2015-09-09 21:01:21','2015-09-09 21:01:21','Today were sitting down with an old friend of mine from my days at Beloit Memorial HS Josh Meyers. Josh is a solo musician also known as JC Star. Were going to catch up with Josh and see what he’s been busy working on as a solo artist. I wanted to do this interview because, like other past guest, this guy stays productive and busy! Lets welcome JC Star to the Beloit Podcast.\r\n\r\n<img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xaf1/v/t1.0-9/1902843_703981972978797_436056109_n.jpg?oh=880a130a63ce231f622db4bb73f880ca&oe=566835EB\" alt=\"\" width=\"351\" height=\"243\" />\r\n\r\n<strong><em>Todays Links</em></strong>\r\n\r\n<em><a href=\"https://soundcloud.com/jc-star\" target=\"_blank\">soundcloud.com jc-star</a></em>\r\n\r\n<em><a href=\"https://itunes.apple.com/us/album/jc-star-music/id866458434\" target=\"_blank\">itunes.apple.com- JC Star Music</a></em>\r\n\r\n<em><a href=\"https://www.facebook.com/JCStarOfficial/info?tab=page_info\" target=\"_blank\">JC Star Official on Facebook</a></em>\r\nRead more at http://thebeloitpod.libsyn.com/jc-star#aXwBL1uxrpGdOosL.99','JC Star Music','','inherit','open','open','','511-revision-v1','','','2015-09-09 21:01:21','2015-09-09 21:01:21','',511,'http://thebeloitpod.com/wordpress1/index.php/2015/09/09/511-revision-v1/',0,'revision','',0),(511,1,'2015-09-09 20:58:36','2015-09-09 20:58:36','Today were sitting down with an old friend of mine from my days at Beloit Memorial HS Josh Meyers. Josh is a solo musician also known as JC Star. Were going to catch up with Josh and see what he’s been busy working on as a solo artist. I wanted to do this interview because, like other past guest, this guy stays productive and busy! Lets welcome JC Star to the Beloit Podcast.\r\n\r\n<img class=\" aligncenter\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xaf1/v/t1.0-9/1902843_703981972978797_436056109_n.jpg?oh=880a130a63ce231f622db4bb73f880ca&oe=566835EB\" alt=\"\" width=\"351\" height=\"243\" />\r\n\r\n<strong><em>Todays Links</em></strong>\r\n\r\n<em><a href=\"https://soundcloud.com/jc-star\" target=\"_blank\">soundcloud.com jc-star</a></em>\r\n\r\n<em><a href=\"https://itunes.apple.com/us/album/jc-star-music/id866458434\" target=\"_blank\">itunes.apple.com- JC Star Music</a></em>\r\n\r\n<em><a href=\"https://www.facebook.com/JCStarOfficial/info?tab=page_info\" target=\"_blank\">JC Star Official on Facebook</a></em>\r\nRead more at http://thebeloitpod.libsyn.com/jc-star#aXwBL1uxrpGdOosL.99','JC Star Music','','publish','open','open','','jc-star-music','','','2015-09-09 21:16:28','2015-09-09 21:16:28','',0,'http://thebeloitpod.com/wordpress1/?p=511',0,'post','',0),(363,1,'2015-08-09 22:37:18','2015-08-09 22:37:18','','Default Registration','','publish','open','open','','default-registration','','','2015-08-09 22:37:18','2015-08-09 22:37:18','',0,'http://thebeloitpod.com/wordpress1/index.php/um_form/default-registration/',0,'um_form','',0),(364,1,'2015-08-09 22:37:18','2015-08-09 22:37:18','','Default Login','','publish','open','open','','default-login','','','2015-08-09 22:37:18','2015-08-09 22:37:18','',0,'http://thebeloitpod.com/wordpress1/index.php/um_form/default-login/',0,'um_form','',0),(365,1,'2015-08-09 22:37:18','2015-08-09 22:37:18','','Default Profile','','publish','open','open','','default-profile','','','2015-08-09 22:37:18','2015-08-09 22:37:18','',0,'http://thebeloitpod.com/wordpress1/index.php/um_form/default-profile/',0,'um_form','',0),(366,1,'2015-08-09 22:37:18','2015-08-09 22:37:18','','Members','','publish','open','open','','members','','','2015-08-09 22:37:18','2015-08-09 22:37:18','',0,'http://thebeloitpod.com/wordpress1/index.php/um_directory/members/',0,'um_directory','',0),(367,1,'2015-08-09 22:37:18','2015-08-09 22:37:18','[ultimatemember form_id=365]','User','','publish','closed','open','','user','','','2015-08-09 22:55:15','2015-08-09 22:55:15','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/user/',0,'page','',0),(368,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember form_id=365]','User','','inherit','open','open','','367-revision-v1','','','2015-08-09 22:37:19','2015-08-09 22:37:19','',367,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/367-revision-v1/',0,'revision','',0),(369,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember form_id=364]','Login','','publish','closed','open','','login','','','2015-08-09 22:50:03','2015-08-09 22:50:03','',373,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/login/',0,'page','',0),(370,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember form_id=364]','Login','','inherit','open','open','','369-revision-v1','','','2015-08-09 22:37:19','2015-08-09 22:37:19','',369,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/369-revision-v1/',0,'revision','',0),(371,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember form_id=363]','Register','','publish','closed','open','','register','','','2015-08-10 02:14:02','2015-08-10 02:14:02','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/register/',0,'page','',0),(372,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember form_id=363]','Register','','inherit','open','open','','371-revision-v1','','','2015-08-09 22:37:19','2015-08-09 22:37:19','',371,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/371-revision-v1/',0,'revision','',0),(373,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember form_id=366]','Members','','publish','closed','open','','members-3','','','2015-08-10 02:24:39','2015-08-10 02:24:39','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/members/',0,'page','',0),(374,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember form_id=366]','Members','','inherit','open','open','','373-revision-v1','','','2015-08-09 22:37:19','2015-08-09 22:37:19','',373,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/373-revision-v1/',0,'revision','',0),(375,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','','Logout','','publish','closed','open','','logout','','','2015-08-09 22:37:19','2015-08-09 22:37:19','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/logout/',0,'page','',0),(376,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','','Logout','','inherit','open','open','','375-revision-v1','','','2015-08-09 22:37:19','2015-08-09 22:37:19','',375,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/375-revision-v1/',0,'revision','',0),(377,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember_account]','Account','','publish','closed','open','','account','','','2015-08-09 22:54:25','2015-08-09 22:54:25','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/account/',0,'page','',0),(378,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember_account]','Account','','inherit','open','open','','377-revision-v1','','','2015-08-09 22:37:19','2015-08-09 22:37:19','',377,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/377-revision-v1/',0,'revision','',0),(379,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember_password]','Password Reset','','publish','closed','open','','password-reset','','','2015-08-09 22:51:34','2015-08-09 22:51:34','',373,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/password-reset/',0,'page','',0),(380,1,'2015-08-09 22:37:19','2015-08-09 22:37:19','[ultimatemember_password]','Password Reset','','inherit','open','open','','379-revision-v1','','','2015-08-09 22:37:19','2015-08-09 22:37:19','',379,'http://thebeloitpod.com/wordpress1/index.php/2015/08/09/379-revision-v1/',0,'revision','',0),(381,1,'2015-08-09 22:37:21','2015-08-09 22:37:21','','Admin','','publish','open','open','','admin','','','2015-08-09 22:37:21','2015-08-09 22:37:21','',0,'http://thebeloitpod.com/wordpress1/index.php/um_role/admin/',0,'um_role','',0),(382,1,'2015-08-09 22:37:21','2015-08-09 22:37:21','','Member','','publish','open','open','','member','','','2015-08-09 22:37:21','2015-08-09 22:37:21','',0,'http://thebeloitpod.com/wordpress1/index.php/um_role/member/',0,'um_role','',0),(383,1,'2015-08-11 02:23:21','2015-08-11 02:23:21','Until I can get caught up on the website I would like everyone to continue using this forum as a respectable place to do barter/negotiation/trade related business.','I will be posting some general guidelines soon!','','publish','closed','open','','i-will-be-posting-some-general-guidelines-soon','','','2015-08-11 02:23:21','2015-08-11 02:23:21','',229,'http://thebeloitpod.com/wordpress1/index.php/forums/topic/i-will-be-posting-some-general-guidelines-soon/',0,'topic','',0),(384,0,'2015-08-11 11:54:13','2015-08-11 11:54:13','','384','','trash','open','open','','wpsc-cart-order-10','','','2015-08-11 11:54:13','2015-08-11 11:54:13','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/wpsc-cart-order-10/',0,'wpsc_cart_orders','',0),(385,1,'2015-08-11 12:07:56','2015-08-11 12:07:56','','385','','trash','open','open','','wpsc-cart-order-11','','','2015-08-11 12:07:56','2015-08-11 12:07:56','',0,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/wpsc-cart-order-11/',0,'wpsc_cart_orders','',0),(386,1,'2015-08-11 18:45:20','2015-08-11 18:45:20','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png\"><img class=\"aligncenter size-medium wp-image-298\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS-300x250.png\" alt=\"TBP EXPLORERS\" width=\"300\" height=\"250\" /></a>Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When you add this to your cart you will have the option to send me the details and terms regarding negotiation of a membership. Thanks for your support!\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"77UUTNYDBM3QL\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_subscribe_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>\r\n \r\n\r\n \r\n\r\n<hr />\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS.png\"><img class=\"aligncenter size-medium wp-image-300\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS-300x250.png\" alt=\"TBPIONEERS\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, you and I can negotiate a way for you to support the show for an entire year if you are ready to be a pioneer at TBP!\r\n\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>','Support TBP','','inherit','open','open','','350-revision-v1','','','2015-08-11 18:45:20','2015-08-11 18:45:20','',350,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/350-revision-v1/',0,'revision','',0),(387,1,'2015-08-11 18:50:34','2015-08-11 18:50:34','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png\"><img class=\"aligncenter size-medium wp-image-298\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS-300x250.png\" alt=\"TBP EXPLORERS\" width=\"300\" height=\"250\" /></a>Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When you add this to your cart you will have the option to send me the details and terms regarding negotiation of a membership. Thanks for your support!\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"USX2KQZ8Z24JL\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_subscribeCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>\r\n \r\n\r\n \r\n\r\n<hr />\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS.png\"><img class=\"aligncenter size-medium wp-image-300\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS-300x250.png\" alt=\"TBPIONEERS\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, you and I can negotiate a way for you to support the show for an entire year if you are ready to be a pioneer at TBP!\r\n\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>','Support TBP','','inherit','open','open','','350-revision-v1','','','2015-08-11 18:50:34','2015-08-11 18:50:34','',350,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/350-revision-v1/',0,'revision','',0),(388,1,'2015-08-11 18:52:22','2015-08-11 18:52:22','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png\"><img class=\"aligncenter size-medium wp-image-298\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS-300x250.png\" alt=\"TBP EXPLORERS\" width=\"300\" height=\"250\" /></a>Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When you add this to your cart you will have the option to send me the details and terms regarding negotiation of a membership. Thanks for your support!\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"USX2KQZ8Z24JL\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_subscribeCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>\r\n \r\n\r\n \r\n\r\n<hr />\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS.png\"><img class=\"aligncenter size-medium wp-image-300\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS-300x250.png\" alt=\"TBPIONEERS\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, you and I can negotiate a way for you to support the show for an entire year if you are ready to be a pioneer at TBP!\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"USX2KQZ8Z24JL\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_subscribeCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n\r\n\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>','Support TBP','','inherit','open','open','','350-revision-v1','','','2015-08-11 18:52:22','2015-08-11 18:52:22','',350,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/350-revision-v1/',0,'revision','',0),(389,1,'2015-08-11 19:03:55','2015-08-11 19:03:55','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS.png\"><img class=\"aligncenter size-medium wp-image-298\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBP-EXPLORERS-300x250.png\" alt=\"TBP EXPLORERS\" width=\"300\" height=\"250\" /></a>Become a TBP explorer for 30 days. This is one monthly membership with TBP. You will get access to all bonus content and extra incentives, exclusive to members only. This is the cheapest way to become a member. When purchase your membership you will have the option to choose the terms regarding negotiation of a membership.Simply choose the amount from the drop menu to select the amount you would like to exchange for a membership. Thanks for your support!\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"277KUPGS3V4KJ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Negotiate\">Negotiate</td></tr><tr><td><select name=\"os0\">\r\n <option value=\"Option 1\">Option 1 $1.00 USD</option>\r\n <option value=\"Option 2\">Option 2 $3.00 USD</option>\r\n <option value=\"Option 3\">Option 3 $5.00 USD</option>\r\n <option value=\"Option 4\">Option 4 $10.00 USD</option>\r\n</select> </td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>\r\n \r\n\r\n \r\n\r\n<hr />\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS.png\"><img class=\"aligncenter size-medium wp-image-300\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/TBPIONEERS-300x250.png\" alt=\"TBPIONEERS\" width=\"300\" height=\"250\" /></a>\r\n\r\n \r\n\r\nBecome a TBP Pioneer and support the show by becoming a one-year member. Just as with the \"Explorer\" membership, you will get access to all bonus content and extra incentives, exclusive to members only, and for one entire year. Remember honesty is a powerful thing, negotiate your membership to the show for an entire year if you are ready to be a pioneer at TBP!You can choose how you would like to support the show!\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"277KUPGS3V4KJ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Negotiate\">Negotiate</td></tr><tr><td><select name=\"os0\">\r\n <option value=\"Option 1\">Option 1 $1.00 USD</option>\r\n <option value=\"Option 2\">Option 2 $3.00 USD</option>\r\n <option value=\"Option 3\">Option 3 $5.00 USD</option>\r\n <option value=\"Option 4\">Option 4 $10.00 USD</option>\r\n</select> </td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n\r\n<A HREF=\"https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=LYN92WWQTVNB6\">\r\n<IMG SRC=\"https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif\" BORDER=\"0\">\r\n</A>','Support TBP','','inherit','open','open','','350-revision-v1','','','2015-08-11 19:03:55','2015-08-11 19:03:55','',350,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/350-revision-v1/',0,'revision','',0),(390,1,'2015-08-11 20:45:31','2015-08-11 20:45:31','On our first Monday Morning live show we had another educational experience at TBP. We learned Meerkat will not be sufficient as of now for the live shows. Also we learned how to set up the conferance call lines sucessfully! Check out this rerun of Monday\'s live show to catch what went on. We did recieve our first caller who was kind enough to hang out on the line for a while as we waited for others to join in. This format will continue on \"Forum Fridays\" at TBP, so make sure you are set up to join on periscope or the TBP Live page!\r\n\r\nI will announce the new conferance number wednesday at the TBP community group on Facebook as well as right here @thebeloitpod.com.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img class=\"aligncenter size-medium wp-image-347\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" /></a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY.png\"><img class=\"aligncenter size-medium wp-image-393\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY-300x300.png\" alt=\"THE BELOIT PODCAST FORUM FRIDAY\" width=\"300\" height=\"300\" /></a>\r\n\r\nForum Fridays will begin this Friday @10am-12. The live stream will be through periscope also here at thebeloitpod.com when you click to go to the LIVE! page. Check back Wednesday/Thursday for more details.','TBP Monday Morning Live! 8-10-15','','publish','open','open','','tbp-monday-morning-live-8-10-15','','','2015-08-11 21:21:08','2015-08-11 21:21:08','',0,'http://thebeloitpod.com/wordpress1/?p=390',0,'post','',0),(391,1,'2015-08-11 20:45:31','2015-08-11 20:45:31','On our first Monday Morning live show we had another educational experience at TBP. We learned Meerkat will not be sufficient as of now for the live shows. Also we learned how to set up the conferance call lines sucessfully! Check out this rerun of Monday\'s live show to catch what went on. We did recieve our first caller who was kind enough to hang out on the line for a while as we waited for others to join in. This format will continue on \"Forum Fridays\" at TBP, so make sure you are set up to join on periscope or the TBP Live page! \r\n\r\nI will announce the new conferance number wednesday at the TBP community group on Facebook as well as right here @thebeloitpod.com.\r\n\r\nimage: http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\r\n\r\n\r\nimage: https://scontent-ord1-1.xx.fbcdn.net/hphotos-xfp1/v/t1.0-9/11822788_917061945030840_1324221432470006441_n.jpg?oh=24f9637a038ebf3ec577f9055cb0b4bd&oe=56400FC7\r\n\r\n\r\n\r\nForum Fridays will begin this Friday @10am-12. The live stream will be through periscope also here at thebeloitpod.com when you click to go to the LIVE! page. Check back Wednesday/Thursday for more details.\r\n\r\n\r\n<enclosure url=\"http://traffic.libsyn.com/thebeloitpod/monday8-10-15.mp3\" length=\"44020529\" type=\"audio/mpeg\" ></enclosure>','TBP Monday Morning Live! 8-10-15','','inherit','open','open','','390-revision-v1','','','2015-08-11 20:45:31','2015-08-11 20:45:31','',390,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/390-revision-v1/',0,'revision','',0),(392,1,'2015-08-11 20:51:37','2015-08-11 20:51:37','On our first Monday Morning live show we had another educational experience at TBP. We learned Meerkat will not be sufficient as of now for the live shows. Also we learned how to set up the conferance call lines sucessfully! Check out this rerun of Monday\'s live show to catch what went on. We did recieve our first caller who was kind enough to hang out on the line for a while as we waited for others to join in. This format will continue on \"Forum Fridays\" at TBP, so make sure you are set up to join on periscope or the TBP Live page! \n\nI will announce the new conferance number wednesday at the TBP community group on Facebook as well as right here @thebeloitpod.com.\n\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" class=\"aligncenter size-medium wp-image-347\" /></a>\n\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY.png\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY-300x300.png\" alt=\"THE BELOIT PODCAST FORUM FRIDAY\" width=\"300\" height=\"300\" class=\"aligncenter size-medium wp-image-393\" /></a>\n\n\nForum Fridays will begin this Friday @10am-12. The live stream will be through periscope also here at thebeloitpod.com when you click to go to the LIVE! page. Check back Wednesday/Thursday for more details.\n\n\n','TBP Monday Morning Live! 8-10-15','','inherit','open','open','','390-autosave-v1','','','2015-08-11 20:51:37','2015-08-11 20:51:37','',390,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/390-autosave-v1/',0,'revision','',0),(393,1,'2015-08-11 20:46:55','2015-08-11 20:46:55','','THE BELOIT PODCAST FORUM FRIDAY','','inherit','open','open','','the-beloit-podcast-forum-friday','','','2015-08-11 20:46:55','2015-08-11 20:46:55','',390,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY.png',0,'attachment','image/png',0),(395,1,'2015-08-11 20:52:09','2015-08-11 20:52:09','On our first Monday Morning live show we had another educational experience at TBP. We learned Meerkat will not be sufficient as of now for the live shows. Also we learned how to set up the conferance call lines sucessfully! Check out this rerun of Monday\'s live show to catch what went on. We did recieve our first caller who was kind enough to hang out on the line for a while as we waited for others to join in. This format will continue on \"Forum Fridays\" at TBP, so make sure you are set up to join on periscope or the TBP Live page! \r\n\r\nI will announce the new conferance number wednesday at the TBP community group on Facebook as well as right here @thebeloitpod.com.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" class=\"aligncenter size-medium wp-image-347\" /></a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY.png\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY-300x300.png\" alt=\"THE BELOIT PODCAST FORUM FRIDAY\" width=\"300\" height=\"300\" class=\"aligncenter size-medium wp-image-393\" /></a>\r\n\r\n\r\nForum Fridays will begin this Friday @10am-12. The live stream will be through periscope also here at thebeloitpod.com when you click to go to the LIVE! page. Check back Wednesday/Thursday for more details.\r\n\r\n\r\n','TBP Monday Morning Live! 8-10-15','','inherit','open','open','','390-revision-v1','','','2015-08-11 20:52:09','2015-08-11 20:52:09','',390,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/390-revision-v1/',0,'revision','',0),(394,1,'2015-08-11 20:47:07','2015-08-11 20:47:07','On our first Monday Morning live show we had another educational experience at TBP. We learned Meerkat will not be sufficient as of now for the live shows. Also we learned how to set up the conferance call lines sucessfully! Check out this rerun of Monday\'s live show to catch what went on. We did recieve our first caller who was kind enough to hang out on the line for a while as we waited for others to join in. This format will continue on \"Forum Fridays\" at TBP, so make sure you are set up to join on periscope or the TBP Live page! \r\n\r\nI will announce the new conferance number wednesday at the TBP community group on Facebook as well as right here @thebeloitpod.com.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" class=\"aligncenter size-medium wp-image-347\" /></a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY.png\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY-300x300.png\" alt=\"THE BELOIT PODCAST FORUM FRIDAY\" width=\"300\" height=\"300\" class=\"aligncenter size-medium wp-image-393\" /></a>\r\n\r\n\r\nForum Fridays will begin this Friday @10am-12. The live stream will be through periscope also here at thebeloitpod.com when you click to go to the LIVE! page. Check back Wednesday/Thursday for more details.\r\n\r\n\r\n<enclosure url=\"http://traffic.libsyn.com/thebeloitpod/monday8-10-15.mp3\" length=\"44020529\" type=\"audio/mpeg\" ></enclosure>','TBP Monday Morning Live! 8-10-15','','inherit','open','open','','390-revision-v1','','','2015-08-11 20:47:07','2015-08-11 20:47:07','',390,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/390-revision-v1/',0,'revision','',0),(396,1,'2015-08-11 21:22:43','2015-08-11 21:22:43',' \r\n<p style=\"text-align: left;\">Today we are joined by Roger Burns. Roger is a member of the Beloit community who is currenly living near Shanghai China. Roger is also the admin at the Facebook page: Beloit Wisconsin Remember When, a history focused group/page that I personally go to for the purpose of learning the history of Beloit which cannot be found at any other one resource. This is truly a unique group! Let\'s welcome Roger to the Beloit Podcast!</p>\r\n<img class=\"aligncenter size-medium wp-image-405\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/roger1-256x300.jpg\" alt=\"roger1\" width=\"256\" height=\"300\" />\r\n\r\n<strong>Todays Links</strong>\r\n\r\n<a href=\"https://www.facebook.com/groups/199914836733128/\" target=\"_blank\">Beloit Wisconsin Remember When- Facebook Group/Page</a>\r\n<p style=\"text-align: left;\"></p>','Roger Burns','','publish','open','open','','roger-burns','','','2015-08-11 21:22:43','2015-08-11 21:22:43','',0,'http://thebeloitpod.com/wordpress1/?p=396',0,'post','',0),(405,1,'2015-08-11 21:16:31','2015-08-11 21:16:31','','roger1','','inherit','open','open','','roger1','','','2015-08-11 21:16:31','2015-08-11 21:16:31','',396,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/roger1.jpg',0,'attachment','image/jpeg',0),(397,1,'2015-08-11 20:56:12','2015-08-11 20:56:12','<ul>\r\nhttp://traffic.libsyn.com/thebeloitpod/rogerburns.mp3</ul>\r\n\r\n','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 20:56:12','2015-08-11 20:56:12','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(398,1,'2015-08-11 20:57:09','2015-08-11 20:57:09','\r\n<img src=\"http://traffic.libsyn.com/thebeloitpod/rogerburns.mp3\" alt=\"Monday Live!\" />\r\n','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 20:57:09','2015-08-11 20:57:09','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(403,1,'2015-08-11 21:13:51','2015-08-11 21:13:51','<ul>http://thebeloitpod.libsyn.com/roger-burns</ul>\r\n','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 21:13:51','2015-08-11 21:13:51','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(402,1,'2015-08-11 21:12:58','2015-08-11 21:12:58','<ul><enclosure url=\"http://traffic.libsyn.com/thebeloitpod/rogerburns.mp3\" length=\"18729812\" type=\"audio/mpeg\" ></enclosure></ul>\r\n\r\n','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 21:12:58','2015-08-11 21:12:58','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(400,1,'2015-08-11 21:09:57','2015-08-11 21:09:57','<code><iframe style=\"border: none\" src=\"//html5-player.libsyn.com/embed/episode/id/3729396/height/200/width/200/theme/standard/direction/no/autoplay/no/autonext/no/thumbnail/no/preload/no/no_addthis/no/\" height=\"200\" width=\"200\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe></code>','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 21:09:57','2015-08-11 21:09:57','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(399,1,'2015-08-11 21:09:05','2015-08-11 21:09:05','<img src=\"http://traffic.libsyn.com/thebeloitpod/rogerburns.mp3\" alt=\"Monday Live!\" />\r\n\r\n<iframe style=\"border: none\" src=\"//html5-player.libsyn.com/embed/episode/id/3729396/height/200/width/200/theme/standard/direction/no/autoplay/no/autonext/no/thumbnail/no/preload/no/no_addthis/no/\" height=\"200\" width=\"200\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 21:09:05','2015-08-11 21:09:05','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(401,1,'2015-08-11 21:11:43','2015-08-11 21:11:43','<code><iframe style=\"border: none\" src=\"//html5-player.libsyn.com/embed/episode/id/3729396/height/200/width/200/theme/standard-mini/direction/no/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/\" height=\"200\" width=\"200\" scrolling=\"no\" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe></code>','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 21:11:43','2015-08-11 21:11:43','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(404,1,'2015-08-11 21:14:26','2015-08-11 21:14:26','<ul>http://directory.libsyn.com/episode/index/id/3729396</ul>\r\n','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 21:14:26','2015-08-11 21:14:26','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(406,1,'2015-08-11 21:18:40','2015-08-11 21:18:40',' \r\n<p style=\"text-align: left;\">Today we are joined by Roger Burns. Roger is a member of the Beloit community who is currenly living near Shanghai China. Roger is also the admin at the Facebook page: Beloit Wisconsin Remember When, a history focused group/page that I personally go to for the purpose of learning the history of Beloit which cannot be found at any other one resource. This is truly a unique group! Let\'s welcome Roger to the Beloit Podcast!\r\n\r\n<img class=\"aligncenter size-medium wp-image-405\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/roger1-256x300.jpg\" alt=\"roger1\" width=\"256\" height=\"300\" /></p>\r\n<strong>Todays Links</strong>\r\n\r\n<a href=\"https://www.facebook.com/groups/199914836733128/\" target=\"_blank\">Beloit Wisconsin Remember When- Facebook Group/Page</a>\r\n<p style=\"text-align: left;\"></p>','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 21:18:40','2015-08-11 21:18:40','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(407,1,'2015-08-11 21:21:08','2015-08-11 21:21:08','On our first Monday Morning live show we had another educational experience at TBP. We learned Meerkat will not be sufficient as of now for the live shows. Also we learned how to set up the conferance call lines sucessfully! Check out this rerun of Monday\'s live show to catch what went on. We did recieve our first caller who was kind enough to hang out on the line for a while as we waited for others to join in. This format will continue on \"Forum Fridays\" at TBP, so make sure you are set up to join on periscope or the TBP Live page!\r\n\r\nI will announce the new conferance number wednesday at the TBP community group on Facebook as well as right here @thebeloitpod.com.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img class=\"aligncenter size-medium wp-image-347\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" /></a>\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY.png\"><img class=\"aligncenter size-medium wp-image-393\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-FORUM-FRIDAY-300x300.png\" alt=\"THE BELOIT PODCAST FORUM FRIDAY\" width=\"300\" height=\"300\" /></a>\r\n\r\nForum Fridays will begin this Friday @10am-12. The live stream will be through periscope also here at thebeloitpod.com when you click to go to the LIVE! page. Check back Wednesday/Thursday for more details.','TBP Monday Morning Live! 8-10-15','','inherit','open','open','','390-revision-v1','','','2015-08-11 21:21:08','2015-08-11 21:21:08','',390,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/390-revision-v1/',0,'revision','',0),(408,1,'2015-08-11 21:22:43','2015-08-11 21:22:43',' \r\n<p style=\"text-align: left;\">Today we are joined by Roger Burns. Roger is a member of the Beloit community who is currenly living near Shanghai China. Roger is also the admin at the Facebook page: Beloit Wisconsin Remember When, a history focused group/page that I personally go to for the purpose of learning the history of Beloit which cannot be found at any other one resource. This is truly a unique group! Let\'s welcome Roger to the Beloit Podcast!</p>\r\n<img class=\"aligncenter size-medium wp-image-405\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/roger1-256x300.jpg\" alt=\"roger1\" width=\"256\" height=\"300\" />\r\n\r\n<strong>Todays Links</strong>\r\n\r\n<a href=\"https://www.facebook.com/groups/199914836733128/\" target=\"_blank\">Beloit Wisconsin Remember When- Facebook Group/Page</a>\r\n<p style=\"text-align: left;\"></p>','Roger Burns','','inherit','open','open','','396-revision-v1','','','2015-08-11 21:22:43','2015-08-11 21:22:43','',396,'http://thebeloitpod.com/wordpress1/index.php/2015/08/11/396-revision-v1/',0,'revision','',0),(409,1,'2015-08-12 22:11:27','2015-08-12 22:11:27','On today\'s episode of TBP we check in with Lester Grace of Janesvilles Backyard Barbeque located at 1019 Kellogg Ave. Lester was recently featured in the Beloit Daily News, which then reached Facebook. Today Lester will tell us all about Backyard Barbeque and how he went from unemployment to creating an opportunity for himself! Lets welcome Lester to TBP!\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/lester1.jpg\"><img class=\"aligncenter size-medium wp-image-410\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/lester1-300x300.jpg\" alt=\"lester1\" width=\"300\" height=\"300\" /></a>\r\n\r\n<strong>Todays Links</strong>\r\n\r\n<a href=\"http://www.backyardbarbequejanesville.com/index.html\">backyardbarbequejanesville.com</a>\r\n\r\n<a href=\"https://www.facebook.com/pages/Backyard-Barbeque/1413761525578261?fref=ts\" target=\"_blank\">Backyard Barbeque on Facebook</a> - This is where you can see some of the awards lester has won!\r\n\r\n ','Lester Grace- Backyard Barbecue','','publish','open','open','','lester-grace-backyard-barbecue','','','2015-08-12 22:11:27','2015-08-12 22:11:27','',0,'http://thebeloitpod.com/wordpress1/?p=409',0,'post','',0),(410,1,'2015-08-12 22:09:10','2015-08-12 22:09:10','','lester1','','inherit','open','open','','lester1','','','2015-08-12 22:09:10','2015-08-12 22:09:10','',409,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/lester1.jpg',0,'attachment','image/jpeg',0),(411,1,'2015-08-12 22:11:27','2015-08-12 22:11:27','On today\'s episode of TBP we check in with Lester Grace of Janesvilles Backyard Barbeque located at 1019 Kellogg Ave. Lester was recently featured in the Beloit Daily News, which then reached Facebook. Today Lester will tell us all about Backyard Barbeque and how he went from unemployment to creating an opportunity for himself! Lets welcome Lester to TBP!\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/lester1.jpg\"><img class=\"aligncenter size-medium wp-image-410\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/lester1-300x300.jpg\" alt=\"lester1\" width=\"300\" height=\"300\" /></a>\r\n\r\n<strong>Todays Links</strong>\r\n\r\n<a href=\"http://www.backyardbarbequejanesville.com/index.html\">backyardbarbequejanesville.com</a>\r\n\r\n<a href=\"https://www.facebook.com/pages/Backyard-Barbeque/1413761525578261?fref=ts\" target=\"_blank\">Backyard Barbeque on Facebook</a> - This is where you can see some of the awards lester has won!\r\n\r\n ','Lester Grace- Backyard Barbecue','','inherit','open','open','','409-revision-v1','','','2015-08-12 22:11:27','2015-08-12 22:11:27','',409,'http://thebeloitpod.com/wordpress1/index.php/2015/08/12/409-revision-v1/',0,'revision','',0),(414,1,'2015-08-14 00:21:14','2015-08-14 00:21:14','','omp-radio2','','inherit','open','open','','omp-radio2','','','2015-08-14 00:21:14','2015-08-14 00:21:14','',413,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg',0,'attachment','image/jpeg',0),(415,1,'2015-08-14 00:22:12','2015-08-14 00:22:12','Last Friday I was in the WADR Janesville Community Radio studio with Andy Anderson and Chad Sheridan of the Open Mick Podcast.OMP Radio is a weekly LIVE comedy show Friday’s 8-10 pm on 103.5 FM WADR featuring two hilarious hosts: Andy Anderson and Chad Sheridan who will take you through two hours of live entertainment. Episodes will feature in-studio guests, callers and special interviews. OMP Radio is perfect for anyone who likes to laugh and is interested in a down to earth view on current events including issues that are happening right here in Janesville, Wisconsin.\r\n\r\n<em><img class=\" aligncenter\" src=\"http://cmptrgy.com/omp/wp-content/uploads/2015/07/omp-radio-home.jpg\" alt=\"\" width=\"225\" height=\"188\" /></em>\r\n\r\n<em>Todays Links</em>\r\n\r\n<em><a href=\"http://ompradio.com/\">ompradio.com</a></em>\r\n\r\n<em><a href=\"https://www.facebook.com/OpenMickPodcast\" target=\"_blank\">Open Mick Podcast on Facebook</a></em>\r\n\r\n ','Andy Anderson & Chad Sheridan of The Open Mick Podcast','','inherit','open','open','','413-revision-v1','','','2015-08-14 00:22:12','2015-08-14 00:22:12','',413,'http://thebeloitpod.com/wordpress1/index.php/2015/08/14/413-revision-v1/',0,'revision','',0),(416,1,'2015-08-14 01:20:07','2015-08-14 01:20:07','<div class=\"_1dwg\">\r\n<div class=\"_5pbx userContent\" data-ft=\"{"tn":"K"}\">\r\n<div id=\"id_55cd41d6969fd1568528865\" class=\"text_exposed_root text_exposed\">\r\n\r\nTomorrow is TBP\'s first Forum Friday! 10am-12\r\nCall in and chat with me!\r\nFreeConference Details\r\nYour Dial-In Number: (605) 475-4120\r\nYour Access Code: 2053194<span class=\"text_exposed_show\">\r\nYour calls will be streamed live on Periscope!\r\nFor those with a Twitter account your in luck! Just find me @thebeloitpod or if you do not have a Twitter account you can go to:\r\n<a href=\"https://www.facebook.com/l.php?u=https%3A%2F%2Fwww.periscope.tv%2F&h=gAQGywJyPAQHu6YvZbE3fizUxuxtOw0OtyWYb6SgyNptNIw&enc=AZOczhXHmhde56uE9xtAz4hioRUZGKLWHMFG6PZzTq-nzRx9aQ8VW-bpf7bIDPXpMyFpBjn94Oe-fm8WnbTW8V8_jzLao9GX1a2Gp2csMCTZj7iPsQrLD-Aw7Qgb_6Mczw00iDWA13FjK410PszuAm0OYEg35Bft999aHkT8n6NiUw&s=1\" target=\"_blank\" rel=\"nofollow\">https://www.periscope.tv/</a>\r\n<a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fonperiscope.com%2F&h=VAQEKWN3OAQFl8zIpZImFxGulO9O7wUW24_LV8ATBUwXYYg&enc=AZM3UfilYAl3FikmZdTEGdljlUZzv_Xu-G-KGkMdRvQQFsYpROzQTdHJ53Jv_mqpdOs8fM8IYbITC-oO7grYyx0jjzNWddkCvP6MU2Q0uyW5dg-tl9x6OprdngO7mk25YJt3UnHJXMHcs-knLAzpxs68DMOqKCEGy4bXVj2IHAoaJA&s=1\" target=\"_blank\" rel=\"nofollow\">http://onperiscope.com/</a>\r\nor download the Periscope App for your mobile/Smart device\r\nYou can always catch the repeat of this episode later at <a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fthebeloitpod.com%2F&h=8AQF4NrsPAQG9VKt7_sZXSbKHPEnkX_qrOeGhH0Pc-Iofbg&enc=AZN-0kWPy7V3oZcLaiV_YU0hb0Y65lfolytpC-W3iMDDcEYMjsEsO223E1PO2T_T9DIiFx7ahizBsJ33iv1Uc0TAac6o5dX76j9uc840QX8Y2Y0aT6C7sQxPeInfAFG_l9ztKPcPUogfGC3HwU7aZjK7UtZUz-q6_zq6cIQDtpVFQg&s=1\" target=\"_blank\" rel=\"nofollow\">thebeloitpod.com</a></span>\r\n<div class=\"text_exposed_show\">\r\n\r\nInternational Dial-In Numbers-\r\n\r\nAustralia: (08) 9520 3110\r\nAustria: 0820 444599\r\nAustria: 0820 987601\r\nBelgium: 070 27 00 01\r\nGermany: 0180 5 016070 - 0.15€/min\r\nNetherlands: 084 001 0003\r\nSouth Korea: 1600-1073\r\nUnited Kingdom: 0330 010 1990\r\nUnited States: (605) 475-4120\r\nUnited States: (712) 832-8330\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div data-ft=\"{"tn":"H"}\">\r\n<div class=\"mtm\">\r\n<div class=\"_46-h _517g\"><img class=\"_46-i img\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/p480x480/11903857_918536458216722_514854191355943372_n.jpg?oh=0b8e0df25053540a4508b66499999857&oe=563B6835\" alt=\"Reese Wood\'s photo.\" width=\"480\" height=\"480\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>','Forum Friday!','','publish','open','open','','forum-friday','','','2015-08-14 01:20:07','2015-08-14 01:20:07','',0,'http://thebeloitpod.com/wordpress1/?p=416',0,'post','',0),(417,1,'2015-08-14 01:20:07','2015-08-14 01:20:07','<div class=\"_1dwg\">\r\n<div class=\"_5pbx userContent\" data-ft=\"{"tn":"K"}\">\r\n<div id=\"id_55cd41d6969fd1568528865\" class=\"text_exposed_root text_exposed\">\r\n\r\nTomorrow is TBP\'s first Forum Friday! 10am-12\r\nCall in and chat with me!\r\nFreeConference Details\r\nYour Dial-In Number: (605) 475-4120\r\nYour Access Code: 2053194<span class=\"text_exposed_show\">\r\nYour calls will be streamed live on Periscope!\r\nFor those with a Twitter account your in luck! Just find me @thebeloitpod or if you do not have a Twitter account you can go to:\r\n<a href=\"https://www.facebook.com/l.php?u=https%3A%2F%2Fwww.periscope.tv%2F&h=gAQGywJyPAQHu6YvZbE3fizUxuxtOw0OtyWYb6SgyNptNIw&enc=AZOczhXHmhde56uE9xtAz4hioRUZGKLWHMFG6PZzTq-nzRx9aQ8VW-bpf7bIDPXpMyFpBjn94Oe-fm8WnbTW8V8_jzLao9GX1a2Gp2csMCTZj7iPsQrLD-Aw7Qgb_6Mczw00iDWA13FjK410PszuAm0OYEg35Bft999aHkT8n6NiUw&s=1\" target=\"_blank\" rel=\"nofollow\">https://www.periscope.tv/</a>\r\n<a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fonperiscope.com%2F&h=VAQEKWN3OAQFl8zIpZImFxGulO9O7wUW24_LV8ATBUwXYYg&enc=AZM3UfilYAl3FikmZdTEGdljlUZzv_Xu-G-KGkMdRvQQFsYpROzQTdHJ53Jv_mqpdOs8fM8IYbITC-oO7grYyx0jjzNWddkCvP6MU2Q0uyW5dg-tl9x6OprdngO7mk25YJt3UnHJXMHcs-knLAzpxs68DMOqKCEGy4bXVj2IHAoaJA&s=1\" target=\"_blank\" rel=\"nofollow\">http://onperiscope.com/</a>\r\nor download the Periscope App for your mobile/Smart device\r\nYou can always catch the repeat of this episode later at <a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fthebeloitpod.com%2F&h=8AQF4NrsPAQG9VKt7_sZXSbKHPEnkX_qrOeGhH0Pc-Iofbg&enc=AZN-0kWPy7V3oZcLaiV_YU0hb0Y65lfolytpC-W3iMDDcEYMjsEsO223E1PO2T_T9DIiFx7ahizBsJ33iv1Uc0TAac6o5dX76j9uc840QX8Y2Y0aT6C7sQxPeInfAFG_l9ztKPcPUogfGC3HwU7aZjK7UtZUz-q6_zq6cIQDtpVFQg&s=1\" target=\"_blank\" rel=\"nofollow\">thebeloitpod.com</a></span>\r\n<div class=\"text_exposed_show\">\r\n\r\nInternational Dial-In Numbers-\r\n\r\nAustralia: (08) 9520 3110\r\nAustria: 0820 444599\r\nAustria: 0820 987601\r\nBelgium: 070 27 00 01\r\nGermany: 0180 5 016070 - 0.15€/min\r\nNetherlands: 084 001 0003\r\nSouth Korea: 1600-1073\r\nUnited Kingdom: 0330 010 1990\r\nUnited States: (605) 475-4120\r\nUnited States: (712) 832-8330\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div data-ft=\"{"tn":"H"}\">\r\n<div class=\"mtm\">\r\n<div class=\"_46-h _517g\"><img class=\"_46-i img\" src=\"https://scontent-ord1-1.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/p480x480/11903857_918536458216722_514854191355943372_n.jpg?oh=0b8e0df25053540a4508b66499999857&oe=563B6835\" alt=\"Reese Wood\'s photo.\" width=\"480\" height=\"480\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>','Forum Friday!','','inherit','open','open','','416-revision-v1','','','2015-08-14 01:20:07','2015-08-14 01:20:07','',416,'http://thebeloitpod.com/wordpress1/index.php/2015/08/14/416-revision-v1/',0,'revision','',0),(419,1,'2015-08-16 11:46:29','2015-08-16 11:46:29','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast.png\"><img class=\" size-medium wp-image-418 alignleft\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast-300x300.png\" alt=\"The Beloit Podcast\" width=\"300\" height=\"300\" data-wp-pid=\"418\" /></a>\r\nThe Beloit Podcast is an education and communications based audio show. Five days a week host Reese Wood will bring information about the Beloit area, its people and places; past, present, and future. Anything relevant to our city, its geographic location, its people, history, business, etc. You will be surprised at the many ways The Beloit Podcast will highlight Beloit as the pivot point with each daily episode. Expect to hear anything ranging from interviews, Call-in episodes, stories, business, economy, current events, local events, music features, lectures, and readings. Each day will be a new and different topic to look forward to!\r\n\r\n[embed]https://www.youtube.com/watch?v=CQQJj3rynts[/embed]','About','','inherit','open','open','','46-revision-v1','','','2015-08-16 11:46:29','2015-08-16 11:46:29','',46,'http://thebeloitpod.com/wordpress1/index.php/2015/08/16/46-revision-v1/',0,'revision','',0),(420,1,'2015-08-16 12:47:14','2015-08-16 12:47:14','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img class=\" size-medium wp-image-347 alignleft\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" data-wp-pid=\"347\" /></a>Tomorrow Morning call in and chat! Lets kick off our week! The Live stream will be posted in this group, on the Beloit Podcast FB page, and at<a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fthebeloitpod.com%2F&h=nAQGA0ZPoAQFQBhjI56t2vFF_gQ2xDVnmP2d6WKFvI-zXqQ&enc=AZOKsar7lNhxTzSOa_7tF0_rIzGEksKralgSdZ6OHuiF-oETEdCerz7Ql71pFMcDVSugOjFoPi8grpig1YMngWaDkcnbAfuX7rmA__lyqZj6ps0rw728wLow8QDggeK7nDIJpkrqsWATNM2QdeJryWOgSzOxoquxVIgMrN34YjsrlJ7EWWeb24CyE_-SDhTTIKa0MUL0WYOkE2ackn4P3EMj&s=1\" target=\"_blank\" rel=\"nofollow\">thebeloitpod.com.</a> If you have a gmail account you can join the live stream with me! All calls to 1-302-202-1098 (5 lines open) will be streamed live and later put out as Monday\'s episode of TBP.\r\n\r\n<a href=\"https://plus.google.com/events/cq9qu29c0ohfcfnv5jpsm082j44\" target=\"_blank\">Link to Google+</a>\r\n\r\n\r\n<div id=\"fb-root\"></div>\r\n<script>// <![CDATA[\r\n(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = \"//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3\"; fjs.parentNode.insertBefore(js, fjs);}(document, \'script\', \'facebook-jssdk\'));\r\n// ]]></script>\r\n<div class=\"fb-post\" data-href=\"https://www.facebook.com/events/755701621218391/\" data-width=\"500\"></div>','Monday Morning Live!','','publish','open','open','','monday-morning-live','','','2015-08-16 12:47:14','2015-08-16 12:47:14','',0,'http://thebeloitpod.com/wordpress1/?p=420',0,'post','',0),(421,1,'2015-08-16 12:47:14','2015-08-16 12:47:14','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE.png\"><img class=\" size-medium wp-image-347 alignleft\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/THE-BELOIT-PODCAST-MORNING-SHOW-LIVE-300x300.png\" alt=\"THE BELOIT PODCAST MORNING SHOW LIVE!\" width=\"300\" height=\"300\" data-wp-pid=\"347\" /></a>Tomorrow Morning call in and chat! Lets kick off our week! The Live stream will be posted in this group, on the Beloit Podcast FB page, and at<a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fthebeloitpod.com%2F&h=nAQGA0ZPoAQFQBhjI56t2vFF_gQ2xDVnmP2d6WKFvI-zXqQ&enc=AZOKsar7lNhxTzSOa_7tF0_rIzGEksKralgSdZ6OHuiF-oETEdCerz7Ql71pFMcDVSugOjFoPi8grpig1YMngWaDkcnbAfuX7rmA__lyqZj6ps0rw728wLow8QDggeK7nDIJpkrqsWATNM2QdeJryWOgSzOxoquxVIgMrN34YjsrlJ7EWWeb24CyE_-SDhTTIKa0MUL0WYOkE2ackn4P3EMj&s=1\" target=\"_blank\" rel=\"nofollow\">thebeloitpod.com.</a> If you have a gmail account you can join the live stream with me! All calls to 1-302-202-1098 (5 lines open) will be streamed live and later put out as Monday\'s episode of TBP.\r\n\r\n<a href=\"https://plus.google.com/events/cq9qu29c0ohfcfnv5jpsm082j44\" target=\"_blank\">Link to Google+</a>\r\n\r\n\r\n<div id=\"fb-root\"></div>\r\n<script>// <![CDATA[\r\n(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = \"//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3\"; fjs.parentNode.insertBefore(js, fjs);}(document, \'script\', \'facebook-jssdk\'));\r\n// ]]></script>\r\n<div class=\"fb-post\" data-href=\"https://www.facebook.com/events/755701621218391/\" data-width=\"500\"></div>','Monday Morning Live!','','inherit','open','open','','420-revision-v1','','','2015-08-16 12:47:14','2015-08-16 12:47:14','',420,'http://thebeloitpod.com/wordpress1/index.php/2015/08/16/420-revision-v1/',0,'revision','',0),(424,1,'2015-08-17 19:10:31','2015-08-17 19:10:31','This is where I will keep important links and resources for podcasting. I am encouraging others in Beloit to join the podcast revolution and possibly form a network with me. All Beloit podcast. One thing to remember about podcasting is you do not need to compete, plenty of niches exists.','DIY Podcasting','','publish','closed','open','','diy-podcasting','','','2015-08-17 19:10:31','2015-08-17 19:10:31','',86,'http://thebeloitpod.com/wordpress1/?post_type=forum&p=424',0,'forum','',0),(425,1,'2015-08-17 19:10:31','2015-08-17 19:10:31','This is where I will keep important links and resources for podcasting. I am encouraging others in Beloit to join the podcast revolution and possibly form a network with me. All Beloit podcast. One thing to remember about podcasting is you do not need to compete, plenty of niches exists.','DIY Podcasting','','inherit','open','open','','424-revision-v1','','','2015-08-17 19:10:31','2015-08-17 19:10:31','',424,'http://thebeloitpod.com/wordpress1/index.php/2015/08/17/424-revision-v1/',0,'revision','',0),(426,1,'2015-08-17 19:16:55','2015-08-17 19:16:55','<a href=\"https://www.freeconference.com/\">freeconference.com- Host for free conference calls, very simple.</a>\n<a href=\"http://theaudacitytopodcast.com/\" target=\"_blank\">theaudacitytopodcast.com- The #1 web location to keep current on podcasting</a>\n<a href=\"http://www.google.com/+/learnmore/hangouts/onair.html\" target=\"_blank\">Google Hangouts</a>\n<a href=\"http://www.thesurvivalpodcast.com/\" target=\"_blank\">thesurvivalpodcast.com</a>\n<a href=\"http://lionelmedia.com/\" target=\"_blank\">lionelmedia.com</a><a href=\"http://www.libsyn.com/\" target=\"_blank\">www.libsyn.com</a>','Links','','publish','closed','open','','links','','','2015-08-17 19:16:55','2015-08-17 19:16:55','',424,'http://thebeloitpod.com/wordpress1/index.php/forums/topic/links/',0,'topic','',0),(427,1,'2015-08-18 15:05:06','2015-08-18 15:05:06','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing Chad and Andy about OMP. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<!--more--><iframe width=\"100%\" height=\"450\" scrolling=\"no\" frameborder=\"no\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/218987049&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\"></iframe><!--more-->\r\n\r\n\r\n\r\n \r\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','publish','open','open','','the-beloit-podcast-open-mick-podcast-wadr-part-2','','','2015-08-18 16:41:37','2015-08-18 16:41:37','',0,'http://thebeloitpod.com/wordpress1/?p=427',0,'post','',0),(439,1,'2015-08-18 16:11:48','2015-08-18 16:11:48','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n[soundcloud url=\"https://api.soundcloud.com/tracks/218987049\" params=\"auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\" width=\"100%\" height=\"450\" iframe=\"true\"]\r\n\r\n \r\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 16:11:48','2015-08-18 16:11:48','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(437,1,'2015-08-18 16:08:53','2015-08-18 16:08:53','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img class=\"aligncenter size-medium wp-image-414\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" /></a>\r\n\r\n \r\n\r\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 16:08:53','2015-08-18 16:08:53','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(428,1,'2015-08-18 15:05:06','2015-08-18 15:05:06','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows. \r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" class=\"aligncenter size-medium wp-image-414\" /></a>\r\n<code>[soundcloud url=\"https://api.soundcloud.com/tracks/218987049\" params=\"auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\" width=\"100%\" height=\"300\" iframe=\"true\" /]</code>\r\n<code>\r\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 15:05:06','2015-08-18 15:05:06','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(429,1,'2015-08-18 15:06:22','2015-08-18 15:06:22','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows. \r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" class=\"aligncenter size-medium wp-image-414\" /></a>\r\n[soundcloud url=\"https://api.soundcloud.com/tracks/218987049\" params=\"auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\" width=\"100%\" height=\"300\" iframe=\"true\" /]\r\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 15:06:22','2015-08-18 15:06:22','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(430,1,'2015-08-18 16:10:22','2015-08-18 16:10:22','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\n\n <li><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img class=\"aligncenter size-medium wp-image-414\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" /></a></li>\n\n\n \n\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-autosave-v1','','','2015-08-18 16:10:22','2015-08-18 16:10:22','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-autosave-v1/',0,'revision','',0),(432,1,'2015-08-18 15:19:55','2015-08-18 15:19:55','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img class=\"aligncenter size-medium wp-image-414\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" /></a>\r\n\r\n \r\n\r\n[soundcloud url=\"https://api.soundcloud.com/tracks/218987049\" params=\"auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\" width=\"100%\" height=\"450\" iframe=\"true\" /]','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 15:19:55','2015-08-18 15:19:55','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(431,1,'2015-08-18 15:10:06','2015-08-18 15:10:06','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img class=\"aligncenter size-medium wp-image-414\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" /></a>\r\n<iframe width=\"100%\" height=\"166\" scrolling=\"no\" frameborder=\"no\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/218987049&amp;color=00cc11&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false\"></iframe>','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 15:10:06','2015-08-18 15:10:06','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(433,1,'2015-08-18 15:22:13','2015-08-18 15:22:13','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img class=\"aligncenter size-medium wp-image-414\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" /></a>\r\n\r\n \r\n\r\n[soundcloud url=\"https://api.soundcloud.com/tracks/218987049\" params=\"auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\" width=\"100%\" height=\"450\" iframe=\"true\" /]\r\n\r\n<a href=\"https://soundcloud.com/janesvillecommunityradio/omp-radio-7th-august-2015-mp3\">On Soundcloud</a>','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 15:22:13','2015-08-18 15:22:13','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(436,1,'2015-08-18 15:51:43','2015-08-18 15:51:43','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img class=\"aligncenter size-medium wp-image-414\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" /></a>\r\n\r\n \r\n\r\n<a href=\"http://[soundcloud url=\"https://api.soundcloud.com/tracks/218987049\" params=\"auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\" width=\"100%\" height=\"450\" iframe=\"true\" /]\"></a>','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 15:51:43','2015-08-18 15:51:43','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(435,1,'2015-08-18 15:50:20','2015-08-18 15:50:20','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img class=\"aligncenter size-medium wp-image-414\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" /></a>\r\n\r\n \r\n\r\n<a href=\"https://api.soundcloud.com/tracks/218987049\">https://api.soundcloud.com/tracks/218987049</a>\r\n<a href=\"https://soundcloud.com/janesvillecommunityradio/omp-radio-7th-august-2015-mp3\">On Soundcloud</a>','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 15:50:20','2015-08-18 15:50:20','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(434,1,'2015-08-18 15:48:19','2015-08-18 15:48:19','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img class=\"aligncenter size-medium wp-image-414\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" /></a>\r\n\r\n \r\n\r\n<code>soundcloud url=\"https://api.soundcloud.com/tracks/218987049\" params=\"auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\" width=\"100%\" height=\"450\" iframe=\"true\" /</code>\r\n\r\n<a href=\"https://soundcloud.com/janesvillecommunityradio/omp-radio-7th-august-2015-mp3\">On Soundcloud</a>','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 15:48:19','2015-08-18 15:48:19','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(438,1,'2015-08-18 16:10:28','2015-08-18 16:10:28','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n <li><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2.jpg\"><img class=\"aligncenter size-medium wp-image-414\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/omp-radio2-300x251.jpg\" alt=\"omp-radio2\" width=\"300\" height=\"251\" /></a></li>\r\n\r\n\r\n \r\n\r\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 16:10:28','2015-08-18 16:10:28','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(440,1,'2015-08-18 16:13:03','2015-08-18 16:13:03','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<!--more-->[soundcloud url=\"https://api.soundcloud.com/tracks/218987049\" params=\"auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\" width=\"100%\" height=\"450\" iframe=\"true\"/]<!--more-->\r\n\r\n\r\n\r\n \r\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 16:13:03','2015-08-18 16:13:03','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(441,1,'2015-08-18 16:15:06','2015-08-18 16:15:06','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing me about what I do with The Beloit Podcast. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<!--more--><iframe width=\"100%\" height=\"450\" scrolling=\"no\" frameborder=\"no\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/218987049&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\"></iframe><!--more-->\r\n\r\n\r\n\r\n \r\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 16:15:06','2015-08-18 16:15:06','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(442,1,'2015-08-18 16:41:37','2015-08-18 16:41:37','Last week I put out the episode I did with Andy Anderson and Chad Sheridan of The Open Mick Podcast at WADR Janesville community radio. Last weeks episode focused on me interviewing Chad and Andy about OMP. This week I wanted to share Chad and Andy\'s interview with me. I was a little nervous going into this interview, and slamming a strong coffee on the way to the interview was not much help. Overall I had a great experience at OMP and I\'ll be checking back at <a href=\"http://ompradio.com\" target=\"_blank\">ompradio.com</a> for all future episodes. WADR also has the Live! App you can download with your mobile device and catch all WADR\'s other shows.\r\n\r\n<!--more--><iframe width=\"100%\" height=\"450\" scrolling=\"no\" frameborder=\"no\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/218987049&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\"></iframe><!--more-->\r\n\r\n\r\n\r\n \r\n','The Beloit Podcast @ Open Mick Podcast & WADR- Part 2','','inherit','open','open','','427-revision-v1','','','2015-08-18 16:41:37','2015-08-18 16:41:37','',427,'http://thebeloitpod.com/wordpress1/index.php/2015/08/18/427-revision-v1/',0,'revision','',0),(443,1,'2015-08-20 00:15:16','2015-08-20 00:15:16','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/jonnakeytotheothersidePROMO.jpg\"><img class=\" wp-image-447 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/jonnakeytotheothersidePROMO-300x222.jpg\" alt=\"jonnakeytotheothersidePROMO\" width=\"382\" height=\"283\" /></a>\r\n\r\nI will be doing my first live streamed event tomorrow!\r\n<p style=\"text-align: left;\">Thursday at 6:30PM I will be live streaming via Google Hangouts from Glitz & Go for The Key To The Other Side With Jonna The Happy Medium event.I will be talking to participants and anyone in attendance. Catch the live stream right here, at Youtube, or be 1 of up to 10 people that can join me on the hangout.</p>\r\n<p style=\"text-align: left;\">Come and be part of this gallery of spirits as they come through to give messages to select audience members through Medium Jonna Kay!\r\nThis is a one of a kind event!\r\nYou may be selected to come up and get a message from your dearly departed!\r\nBring an item, or photo from the person you want to hear from, so Jonna Kay can hold it and get vibrations from that object!\r\nOne \"Specialty Drink\" will be provided free of charge.\r\nPrizes, hashtag contests with the possibility to get a personal FULL private reading!</p>\r\nIf you have ever watched the Long Island Medium and thought, \"I should do this\", then this is YOUR sign to do this!\r\n\r\nThis event is in the Banquet Room Glitz & Go, Beloit\'s finest and newest Banquet Room!\r\n\r\nBy paying the reservation fee, you are giving your permission to be filmed live on You Tube or Periscope to save your reading!\r\nReservation Instructions: Stop in and pre pay at Glitz & Go LLC $ 25.00 per person, in advance. You are encouraged to reserve early, if you choose to wait until the last minute, the price at the door is $30.00 per person.\r\n\r\n6:30 Registration\r\n7:00 Show Time\r\n\r\n<iframe src=\"//www.youtube.com/embed/s_Qwg6AaN-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<a href=\"https://plus.google.com/events/cs23bl2ikh69st7h0n7msbm0dsk\">Jonna Kay @ Glitz & Go - Goolge+Event</a>\r\n\r\n<a href=\"http://www.youtube.com/watch?v=s_Qwg6AaN-8\" target=\"_blank\">The Live stream at Youtube.com</a>','Jonna Kay Live @ Glitz & Go','','publish','open','open','','jonna-kay-live-glitz-go','','','2015-08-20 00:24:11','2015-08-20 00:24:11','',0,'http://thebeloitpod.com/wordpress1/?p=443',0,'post','',0),(444,1,'2015-08-20 00:08:25','2015-08-20 00:08:25','Thursday at 6:30PM I will be live streaming via Google Hangouts from Glitz & Go for The Key To The Other Side With Jonna The Happy Medium event.I will be talking to participants and anyone in attendance. Catch the live stream right here, at Youtube, or be 1 of up to 10 people that can join me on the hangout.\r\n\r\nCome and be part of this gallery of spirits as they come through to give messages to select audience members through Medium Jonna Kay! \r\nThis is a one of a kind event!\r\nYou may be selected to come up and get a message from your dearly departed!\r\nBring an item, or photo from the person you want to hear from, so Jonna Kay can hold it and get vibrations from that object! \r\nOne \"Specialty Drink\" will be provided free of charge.\r\nPrizes, hashtag contests with the possibility to get a personal FULL private reading! \r\n\r\nIf you have ever watched the Long Island Medium and thought, \"I should do this\", then this is YOUR sign to do this! \r\n\r\nThis event is in the Banquet Room Glitz & Go, Beloit\'s finest and newest Banquet Room! \r\n\r\nBy paying the reservation fee, you are giving your permission to be filmed live on You Tube or Periscope to save your reading! \r\nReservation Instructions: Stop in and pre pay at Glitz & Go LLC $ 25.00 per person, in advance. You are encouraged to reserve early, if you choose to wait until the last minute, the price at the door is $30.00 per person. \r\n\r\n6:30 Registration\r\n7:00 Show Time\r\n\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/s_Qwg6AaN-8\" frameborder=\"0\" allowfullscreen></iframe>','Jonna Kay Live @ Glitz & Go','','inherit','open','open','','443-revision-v1','','','2015-08-20 00:08:25','2015-08-20 00:08:25','',443,'http://thebeloitpod.com/wordpress1/index.php/2015/08/20/443-revision-v1/',0,'revision','',0),(446,1,'2015-08-20 00:13:28','2015-08-20 00:13:28','','JonnaGliztpromo','','inherit','open','open','','jonnagliztpromo','','','2015-08-20 00:13:28','2015-08-20 00:13:28','',443,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/JonnaGliztpromo.jpg',0,'attachment','image/jpeg',0),(447,1,'2015-08-20 00:14:43','2015-08-20 00:14:43','','jonnakeytotheothersidePROMO','','inherit','open','open','','jonnakeytotheothersidepromo','','','2015-08-20 00:14:43','2015-08-20 00:14:43','',443,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/jonnakeytotheothersidePROMO.jpg',0,'attachment','image/jpeg',0),(448,1,'2015-08-20 00:15:16','2015-08-20 00:15:16','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/jonnakeytotheothersidePROMO.jpg\"><img class=\" wp-image-447 alignleft\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/jonnakeytotheothersidePROMO-300x222.jpg\" alt=\"jonnakeytotheothersidePROMO\" width=\"382\" height=\"283\" /></a>\r\n\r\nI will be doing my first live streamed event tomorrow!\r\n\r\nThursday at 6:30PM I will be live streaming via Google Hangouts from Glitz & Go for The Key To The Other Side With Jonna The Happy Medium event.I will be talking to participants and anyone in attendance. Catch the live stream right here, at Youtube, or be 1 of up to 10 people that can join me on the hangout.\r\n\r\nCome and be part of this gallery of spirits as they come through to give messages to select audience members through Medium Jonna Kay!\r\nThis is a one of a kind event!\r\nYou may be selected to come up and get a message from your dearly departed!\r\nBring an item, or photo from the person you want to hear from, so Jonna Kay can hold it and get vibrations from that object!\r\nOne \"Specialty Drink\" will be provided free of charge.\r\nPrizes, hashtag contests with the possibility to get a personal FULL private reading!\r\n\r\nIf you have ever watched the Long Island Medium and thought, \"I should do this\", then this is YOUR sign to do this!\r\n\r\nThis event is in the Banquet Room Glitz & Go, Beloit\'s finest and newest Banquet Room!\r\n\r\nBy paying the reservation fee, you are giving your permission to be filmed live on You Tube or Periscope to save your reading!\r\nReservation Instructions: Stop in and pre pay at Glitz & Go LLC $ 25.00 per person, in advance. You are encouraged to reserve early, if you choose to wait until the last minute, the price at the door is $30.00 per person.\r\n\r\n6:30 Registration\r\n7:00 Show Time\r\n\r\n<iframe src=\"//www.youtube.com/embed/s_Qwg6AaN-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<a href=\"https://plus.google.com/events/cs23bl2ikh69st7h0n7msbm0dsk\">Jonna Kay @ Glitz & Go - Goolge+Event</a>\r\n\r\n<a href=\"http://www.youtube.com/watch?v=s_Qwg6AaN-8\" target=\"_blank\">The Live stream at Youtube.com</a>','Jonna Kay Live @ Glitz & Go','','inherit','open','open','','443-revision-v1','','','2015-08-20 00:15:16','2015-08-20 00:15:16','',443,'http://thebeloitpod.com/wordpress1/index.php/2015/08/20/443-revision-v1/',0,'revision','',0),(449,1,'2015-08-20 00:23:51','2015-08-20 00:23:51','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/jonnakeytotheothersidePROMO.jpg\"><img class=\" wp-image-447 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/jonnakeytotheothersidePROMO-300x222.jpg\" alt=\"jonnakeytotheothersidePROMO\" width=\"382\" height=\"283\" /></a>\n\nI will be doing my first live streamed event tomorrow!\n<p style=\"text-align: left;\">Thursday at 6:30PM I will be live streaming via Google Hangouts from Glitz & Go for The Key To The Other Side With Jonna The Happy Medium event.I will be talking to participants and anyone in attendance. Catch the live stream right here, at Youtube, or be 1 of up to 10 people that can join me on the hangout.</p>\n<p style=\"text-align: left;\">Come and be part of this gallery of spirits as they come through to give messages to select audience members through Medium Jonna Kay!\nThis is a one of a kind event!\nYou may be selected to come up and get a message from your dearly departed!\nBring an item, or photo from the person you want to hear from, so Jonna Kay can hold it and get vibrations from that object!\nOne \"Specialty Drink\" will be provided free of charge.\nPrizes, hashtag contests with the possibility to get a personal FULL private reading!</p>\nIf you have ever watched the Long Island Medium and thought, \"I should do this\", then this is YOUR sign to do this!\n\nThis event is in the Banquet Room Glitz & Go, Beloit\'s finest and newest Banquet Room!\n\nBy paying the reservation fee, you are giving your permission to be filmed live on You Tube or Periscope to save your reading!\nReservation Instructions: Stop in and pre pay at Glitz & Go LLC $ 25.00 per person, in advance. You are encouraged to reserve early, if you choose to wait until the last minute, the price at the door is $30.00 per person.\n\n6:30 Registration\n7:00 Show Time\n\n<iframe src=\"//www.youtube.com/embed/s_Qwg6AaN-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n<a href=\"https://plus.google.com/events/cs23bl2ikh69st7h0n7msbm0dsk\">Jonna Kay @ Glitz & Go - Goolge+Event</a>\n\n<a href=\"http://www.youtube.com/watch?v=s_Qwg6AaN-8\" target=\"_blank\">The Live stream at Youtube.com</a>','Jonna Kay Live @ Glitz & Go','','inherit','open','open','','443-autosave-v1','','','2015-08-20 00:23:51','2015-08-20 00:23:51','',443,'http://thebeloitpod.com/wordpress1/index.php/2015/08/20/443-autosave-v1/',0,'revision','',0),(450,1,'2015-08-20 00:24:11','2015-08-20 00:24:11','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/jonnakeytotheothersidePROMO.jpg\"><img class=\" wp-image-447 aligncenter\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/jonnakeytotheothersidePROMO-300x222.jpg\" alt=\"jonnakeytotheothersidePROMO\" width=\"382\" height=\"283\" /></a>\r\n\r\nI will be doing my first live streamed event tomorrow!\r\n<p style=\"text-align: left;\">Thursday at 6:30PM I will be live streaming via Google Hangouts from Glitz & Go for The Key To The Other Side With Jonna The Happy Medium event.I will be talking to participants and anyone in attendance. Catch the live stream right here, at Youtube, or be 1 of up to 10 people that can join me on the hangout.</p>\r\n<p style=\"text-align: left;\">Come and be part of this gallery of spirits as they come through to give messages to select audience members through Medium Jonna Kay!\r\nThis is a one of a kind event!\r\nYou may be selected to come up and get a message from your dearly departed!\r\nBring an item, or photo from the person you want to hear from, so Jonna Kay can hold it and get vibrations from that object!\r\nOne \"Specialty Drink\" will be provided free of charge.\r\nPrizes, hashtag contests with the possibility to get a personal FULL private reading!</p>\r\nIf you have ever watched the Long Island Medium and thought, \"I should do this\", then this is YOUR sign to do this!\r\n\r\nThis event is in the Banquet Room Glitz & Go, Beloit\'s finest and newest Banquet Room!\r\n\r\nBy paying the reservation fee, you are giving your permission to be filmed live on You Tube or Periscope to save your reading!\r\nReservation Instructions: Stop in and pre pay at Glitz & Go LLC $ 25.00 per person, in advance. You are encouraged to reserve early, if you choose to wait until the last minute, the price at the door is $30.00 per person.\r\n\r\n6:30 Registration\r\n7:00 Show Time\r\n\r\n<iframe src=\"//www.youtube.com/embed/s_Qwg6AaN-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<a href=\"https://plus.google.com/events/cs23bl2ikh69st7h0n7msbm0dsk\">Jonna Kay @ Glitz & Go - Goolge+Event</a>\r\n\r\n<a href=\"http://www.youtube.com/watch?v=s_Qwg6AaN-8\" target=\"_blank\">The Live stream at Youtube.com</a>','Jonna Kay Live @ Glitz & Go','','inherit','open','open','','443-revision-v1','','','2015-08-20 00:24:11','2015-08-20 00:24:11','',443,'http://thebeloitpod.com/wordpress1/index.php/2015/08/20/443-revision-v1/',0,'revision','',0),(451,1,'2015-08-21 05:28:56','2015-08-21 05:28:56','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Forum-Friday2.png\"><img class=\"aligncenter wp-image-452\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Forum-Friday2-300x300.png\" alt=\"Forum Friday2\" width=\"445\" height=\"445\" /></a>Forum Friday! Call in and talk about Beloit and our surrounding area. This is an opportunity to shed light on topics or issues that you find important. I will stream all calls and video hangouts live at thebeloitpod.com also at Youtube.com, Facebook, Twitter, and the Google+ event page. This is your chance to chat with other members of our community about what matters to you most!\r\n\r\n<iframe src=\"//www.youtube.com/embed/1ey0pVGQLqs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Forum Friday!','','publish','open','open','','forum-friday-2','','','2015-08-21 05:40:53','2015-08-21 05:40:53','',0,'http://thebeloitpod.com/wordpress1/?p=451',0,'post','',0),(452,1,'2015-08-21 05:22:37','2015-08-21 05:22:37','','Forum Friday2','','inherit','open','open','','forum-friday2','','','2015-08-21 05:22:37','2015-08-21 05:22:37','',451,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Forum-Friday2.png',0,'attachment','image/png',0),(453,1,'2015-08-21 05:28:56','2015-08-21 05:28:56','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Forum-Friday2.png\"><img class=\"aligncenter wp-image-452\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Forum-Friday2-300x300.png\" alt=\"Forum Friday2\" width=\"445\" height=\"445\" /></a>Forum Friday! Call in and talk about Beloit and our surrounding area. This is an opportunity to shed light on topics or issues that you find important. I will stream all calls and video hangouts live at thebeloitpod.com also at Youtube.com, Facebook, Twitter, and the Google+ event page. This is your chance to chat with other members of our community about what matters to you most!\r\n\r\n \r\n<p style=\"text-align: center;\"><iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/1ey0pVGQLqs\" frameborder=\"0\" allowfullscreen></iframe></p>','Forum Friday!','','inherit','open','open','','451-revision-v1','','','2015-08-21 05:28:56','2015-08-21 05:28:56','',451,'http://thebeloitpod.com/wordpress1/index.php/2015/08/21/451-revision-v1/',0,'revision','',0),(454,1,'2015-08-21 05:30:48','2015-08-21 05:30:48','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Forum-Friday2.png\"><img class=\"aligncenter wp-image-452\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Forum-Friday2-300x300.png\" alt=\"Forum Friday2\" width=\"445\" height=\"445\" /></a>Forum Friday! Call in and talk about Beloit and our surrounding area. This is an opportunity to shed light on topics or issues that you find important. I will stream all calls and video hangouts live at thebeloitpod.com also at Youtube.com, Facebook, Twitter, and the Google+ event page. This is your chance to chat with other members of our community about what matters to you most!\r\n\r\n \r\n<p style=\"text-align: center;\"></p>\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/1ey0pVGQLqs\" frameborder=\"0\" allowfullscreen></iframe>','Forum Friday!','','inherit','open','open','','451-revision-v1','','','2015-08-21 05:30:48','2015-08-21 05:30:48','',451,'http://thebeloitpod.com/wordpress1/index.php/2015/08/21/451-revision-v1/',0,'revision','',0),(455,1,'2015-08-21 05:40:53','2015-08-21 05:40:53','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Forum-Friday2.png\"><img class=\"aligncenter wp-image-452\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/Forum-Friday2-300x300.png\" alt=\"Forum Friday2\" width=\"445\" height=\"445\" /></a>Forum Friday! Call in and talk about Beloit and our surrounding area. This is an opportunity to shed light on topics or issues that you find important. I will stream all calls and video hangouts live at thebeloitpod.com also at Youtube.com, Facebook, Twitter, and the Google+ event page. This is your chance to chat with other members of our community about what matters to you most!\r\n\r\n<iframe src=\"//www.youtube.com/embed/1ey0pVGQLqs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Forum Friday!','','inherit','open','open','','451-revision-v1','','','2015-08-21 05:40:53','2015-08-21 05:40:53','',451,'http://thebeloitpod.com/wordpress1/index.php/2015/08/21/451-revision-v1/',0,'revision','',0),(456,1,'2015-08-21 05:47:48','2015-08-21 05:47:48','<iframe src=\"//www.youtube.com/embed/1ey0pVGQLqs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Live!','','inherit','open','open','','341-revision-v1','','','2015-08-21 05:47:48','2015-08-21 05:47:48','',341,'http://thebeloitpod.com/wordpress1/index.php/2015/08/21/341-revision-v1/',0,'revision','',0),(458,1,'2015-08-22 22:39:18','2015-08-22 22:39:18','','Home','','publish','open','open','','home','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',0,'http://thebeloitpod.com/wordpress1/?p=458',1,'nav_menu_item','',0),(459,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','459','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',0,'http://thebeloitpod.com/wordpress1/?p=459',2,'nav_menu_item','',0),(460,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','460','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',0,'http://thebeloitpod.com/wordpress1/?p=460',8,'nav_menu_item','',0),(461,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','461','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',0,'http://thebeloitpod.com/wordpress1/?p=461',3,'nav_menu_item','',0),(462,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','462','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',0,'http://thebeloitpod.com/wordpress1/?p=462',4,'nav_menu_item','',0),(463,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','463','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',0,'http://thebeloitpod.com/wordpress1/?p=463',11,'nav_menu_item','',0),(464,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','464','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',0,'http://thebeloitpod.com/wordpress1/?p=464',5,'nav_menu_item','',0),(465,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','465','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',373,'http://thebeloitpod.com/wordpress1/?p=465',6,'nav_menu_item','',0),(466,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','466','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',373,'http://thebeloitpod.com/wordpress1/?p=466',10,'nav_menu_item','',0),(467,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','467','','','2015-08-22 23:06:42','2015-08-22 23:06:42','',0,'http://thebeloitpod.com/wordpress1/?p=467',12,'nav_menu_item','',0),(468,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','468','','','2015-08-22 23:06:42','2015-08-22 23:06:42','',0,'http://thebeloitpod.com/wordpress1/?p=468',13,'nav_menu_item','',0),(469,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','469','','','2015-08-22 23:06:42','2015-08-22 23:06:42','',0,'http://thebeloitpod.com/wordpress1/?p=469',14,'nav_menu_item','',0),(470,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','470','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',0,'http://thebeloitpod.com/wordpress1/?p=470',7,'nav_menu_item','',0),(471,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','471','','','2015-08-22 23:06:42','2015-08-22 23:06:42','',0,'http://thebeloitpod.com/wordpress1/?p=471',15,'nav_menu_item','',0),(472,1,'2015-08-22 22:39:19','2015-08-22 22:39:19',' ','','','publish','open','open','','472','','','2015-08-22 23:06:40','2015-08-22 23:06:40','',63,'http://thebeloitpod.com/wordpress1/?p=472',9,'nav_menu_item','',0),(473,1,'2015-08-22 22:55:49','2015-08-22 22:55:49','','free_twitter_designer','','inherit','open','open','','free_twitter_designer','','','2015-08-22 22:55:49','2015-08-22 22:55:49','',0,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/free_twitter_designer.jpg',0,'attachment','image/jpeg',0),(474,1,'2015-08-22 23:19:18','2015-08-22 23:19:18','<div class=\"gce-list-event gce-tooltip-event\">[event-title]</div>\r\n<div>Starts: [start-time]</div>\r\n<div>Ends: [end-date] - [end-time]</div>\r\n[if-location]\r\n<div>Location: [location]</div>\r\n[/if-location]\r\n[if-description]\r\n<div>Description: [description]</div>\r\n[/if-description]\r\n<div>[link newwindow=\"true\"]More details...[/link]</div>','Stats','','publish','closed','closed','','stats','','','2015-08-22 23:19:18','2015-08-22 23:19:18','',0,'http://thebeloitpod.com/wordpress1/?post_type=gce_feed&p=474',0,'gce_feed','',0),(475,1,'2015-08-23 03:12:43','2015-08-23 03:12:43','','The Beloit Podcast Forum','','inherit','open','open','','the-beloit-podcast-forum','','','2015-08-23 03:12:43','2015-08-23 03:12:43','',82,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/The-Beloit-Podcast-Forum.jpg',0,'attachment','image/jpeg',0),(476,1,'2015-08-23 03:21:14','2015-08-23 03:21:14','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\"><img class=\"aligncenter wp-image-328\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER-300x39.png\" alt=\"FORUMBANNER\" width=\"502\" height=\"65\" /></a><a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/07/FORUMBANNER.png\">\r\n</a>\r\nWelcome to The Beloit Podcast Community Forum. You can also access The Beloit Podcast Community group on Facebook here.\r\n[bbp-forum-index]\r\n[custom-facebook-feed]\r\n<a class=\"twitter-timeline\" href=\"https://twitter.com/thebeloitpod\" data-widget-id=\"635284292143153152\">Tweets by @thebeloitpod</a>\r\n<script type=\"mce-mce-no/type\">// <![CDATA[\r\n!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?\'http\':\'https\';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+\"://platform.twitter.com/widgets.js\";fjs.parentNode.insertBefore(js,fjs);}}(document,\"script\",\"twitter-wjs\");\r\n// ]]></script>','Forum','','inherit','open','open','','82-revision-v1','','','2015-08-23 03:21:14','2015-08-23 03:21:14','',82,'http://thebeloitpod.com/wordpress1/index.php/2015/08/23/82-revision-v1/',0,'revision','',0),(477,1,'2015-08-24 12:39:10','2015-08-24 12:39:10','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/mondayLIVE.jpg\"><img class=\"aligncenter wp-image-478\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/mondayLIVE-300x300.jpg\" alt=\"mondayLIVE\" width=\"353\" height=\"353\" /></a>\r\n<p style=\"text-align: left;\">Its Monday and TBP is back at it with another live morning show. I have made a slide presentation to set some reference for this episode. Whatever way you follow today\'s episode I just want to point out that I have produced today\'s content in a variety of formats for immediate and convenient access for all supporters of TBP.</p>\r\n<p style=\"text-align: left;\">I have 5 phone lines open at all times 1 302-202-1098 Access Code:8547351</p>\r\n<p style=\"text-align: left;\">Also 10 video hangouts are open for others to join via google+/gmail</p>\r\n<p style=\"text-align: left;\">You can leave a voicemail at 608 466 6013</p>\r\n<p style=\"text-align: left;\">Email: thebeloitpod@gmail.com</p>\r\n<iframe src=\"//www.youtube.com/embed/wnjBV7O66YA\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Monday Morning Live!','','publish','open','open','','monday-morning-live-2','','','2015-08-24 20:13:43','2015-08-24 20:13:43','',0,'http://thebeloitpod.com/wordpress1/?p=477',0,'post','',0),(478,1,'2015-08-24 01:21:52','2015-08-24 01:21:52','','mondayLIVE','','inherit','open','open','','mondaylive','','','2015-08-24 01:21:52','2015-08-24 01:21:52','',477,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/mondayLIVE.jpg',0,'attachment','image/jpeg',0),(479,1,'2015-08-24 01:31:52','2015-08-24 01:31:52','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/mondayLIVE.jpg\"><img class=\"aligncenter wp-image-478\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/mondayLIVE-300x300.jpg\" alt=\"mondayLIVE\" width=\"353\" height=\"353\" /></a>\r\n<p style=\"text-align: left;\">Its Monday and TBP is back at it with another live morning show. I have made a slide presentation to set some reference for this episode. Whatever way you follow today\'s episode I just want to point out that I have produced today\'s content in a variety of formats for immediate and convenient access for all supporters of TBP.</p>\r\n<p style=\"text-align: left;\">I have 5 phone lines open at all times 1 302-202-1098 Access Code:8547351</p>\r\n<p style=\"text-align: left;\">Also 10 video hangouts are open for others to join via google+/gmail</p>\r\n<p style=\"text-align: left;\">You can leave a voicemail at 608 466 6013</p>\r\n<p style=\"text-align: left;\">Email: thebeloitpod@gmail.com</p>\r\n<iframe src=\"//www.youtube.com/embed/wnjBV7O66YA\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Monday Morning Live!','','inherit','open','open','','477-revision-v1','','','2015-08-24 01:31:52','2015-08-24 01:31:52','',477,'http://thebeloitpod.com/wordpress1/index.php/2015/08/24/477-revision-v1/',0,'revision','',0),(480,1,'2015-08-24 01:33:08','2015-08-24 01:33:08','<iframe src=\"//www.youtube.com/embed/wnjBV7O66YA\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Live!','','inherit','open','open','','341-revision-v1','','','2015-08-24 01:33:08','2015-08-24 01:33:08','',341,'http://thebeloitpod.com/wordpress1/index.php/2015/08/24/341-revision-v1/',0,'revision','',0),(481,1,'2015-08-24 20:04:58','2015-08-24 20:04:58','Last week I was featured in the Beloit Daily News for my work here at The Beloit Podcast. I am honored by the article\'s title and the editing that went into it. Overall I was very happy with the article and the responses to it. Thanks to Whitney Helm for being open to doing this back to back type intreview/episode.\r\n\r\n<img src=\"http://bloximages.chicago2.vip.townnews.com/beloitdailynews.com/content/tncms/assets/v3/editorial/e/73/e737a148-474b-11e5-af31-dbd693f80e02/55d5eb6d6c226.image.jpg?resize=300%2C200\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\n<strong><em>Todays Links</em></strong>\r\n\r\n<em><a href=\"http://www.beloitdailynews.com/news/illinois/local-man-follows-dreams-launches-the-beloit-podcast/article_c2bd7464-474b-11e5-b5a2-2bf13c6d3f3d.html\" target=\"_blank\">My TBP article in the Beloit Daily News</a></em>\r\n\r\n<em><a href=\"http://www.beloitdailynews.com/\" target=\"_blank\">www.beloitdailynews.com/</a></em>\r\n\r\n<em><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></em>\r\n\r\n \r\n\r\n \r\n\r\n ','My interview with Whitney Helm for The Beloit Daily News','','publish','open','open','','my-interview-with-whitney-helm-for-the-beloit-daily-news','','','2015-08-24 20:04:58','2015-08-24 20:04:58','',0,'http://thebeloitpod.com/wordpress1/?p=481',0,'post','',0),(482,1,'2015-08-24 20:03:01','2015-08-24 20:03:01','','ReeseBDN','','inherit','open','open','','reesebdn','','','2015-08-24 20:03:01','2015-08-24 20:03:01','',481,'http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/ReeseBDN.jpg',0,'attachment','image/jpeg',0),(483,1,'2015-08-24 20:04:58','2015-08-24 20:04:58','Last week I was featured in the Beloit Daily News for my work here at The Beloit Podcast. I am honored by the article\'s title and the editing that went into it. Overall I was very happy with the article and the responses to it. Thanks to Whitney Helm for being open to doing this back to back type intreview/episode.\r\n\r\n<img src=\"http://bloximages.chicago2.vip.townnews.com/beloitdailynews.com/content/tncms/assets/v3/editorial/e/73/e737a148-474b-11e5-af31-dbd693f80e02/55d5eb6d6c226.image.jpg?resize=300%2C200\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\n<strong><em>Todays Links</em></strong>\r\n\r\n<em><a href=\"http://www.beloitdailynews.com/news/illinois/local-man-follows-dreams-launches-the-beloit-podcast/article_c2bd7464-474b-11e5-b5a2-2bf13c6d3f3d.html\" target=\"_blank\">My TBP article in the Beloit Daily News</a></em>\r\n\r\n<em><a href=\"http://www.beloitdailynews.com/\" target=\"_blank\">www.beloitdailynews.com/</a></em>\r\n\r\n<em><a href=\"http://thebeloitpod.com/wordpress1/\" target=\"_blank\">thebeloitpod.com</a></em>\r\n\r\n \r\n\r\n \r\n\r\n ','My interview with Whitney Helm for The Beloit Daily News','','inherit','open','open','','481-revision-v1','','','2015-08-24 20:04:58','2015-08-24 20:04:58','',481,'http://thebeloitpod.com/wordpress1/index.php/2015/08/24/481-revision-v1/',0,'revision','',0),(489,1,'2015-08-28 23:27:02','2015-08-28 23:27:02','<a href=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/WADR-logo-e1428883764958.jpg\"><img class=\"aligncenter size-medium wp-image-486\" src=\"http://thebeloitpod.com/wordpress1/wp-content/uploads/2015/08/WADR-logo-e1428883764958-300x300.jpg\" alt=\"WADR-logo-e1428883764958\" width=\"300\" height=\"300\" /></a>Major Announcement! Beginning Monday morning I will be live on 103.5 WADR Janesville Community Radio from 7AM-8AM. If you are outside of the Janesville area just go to<a href=\"http://l.facebook.com/l.php?u=http%3A%2F%2Fjanesvillecommunityradio.com%2Flisten-live%2F&h=vAQF4zuUnAQFuw1pJ_eRgKVgPfBmC1AyBQCjmdRpjMJp4Vg&enc=AZPe1zUoonwiPxuPwP0e-Z2hU5iioe_F2Ckt5i6fpfyqxdtlDn8HzeoF6P-IgQj1ZUded6Hug5suQ6OFgtNww5O1VMOiUjlMA5aeCsIRy2t896_EQtcXrZqhWLklzQ5SZ2xeo-npcj2-yh12Fz12OHdQIFokXDcNQ5MbbTT_mploVQ&s=1\" target=\"_blank\" rel=\"nofollow\">janesvillecommunityradio.com/listen-live/</a>. Thanks to everyone at WADR for the opportunity.\r\n\r\nWADR currently has many great programs:\r\n\r\nArtSpark With Eddy Baran\r\n\r\nBeloit Snappers Baseball\r\n\r\nBFunny Sundays\r\n\r\nChrist in the City\r\n\r\nMindful Mondays\r\n\r\nOMP Radio\r\n\r\nDemocracy Now\r\n\r\nAnd more...\r\n\r\nIf you would like to volunteer you can do so by visiting <a href=\"http://janesvillecommunityradio.com/volunteer/\" target=\"_blank\">janesvillecommunityradio.com/volunteer</a>','103.5 WADR Janesville Community Radio','','inherit','open','open','','485-revision-v1','','','2015-08-28 23:27:02','2015-08-28 23:27:02','',485,'http://thebeloitpod.com/wordpress1/index.php/2015/08/28/485-revision-v1/',0,'revision','',0),(509,1,'2015-09-08 16:25:12','2015-09-08 16:25:12','Today\'s podcast is a repeat from the WADR Morning show. Dont forget you can chat with me every morning 7AM-8AM at <a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 1035 LPFM Mornings with Reese Wood on Facebook.</a> If you check todays bonus content below you will find the slide presentation I used for this mornings live show. Thanks for staying tuned!\r\n\r\n <li>https://docs.google.com/presentation/d/1FZqCODoMIy5Om1-skhmAqcishIRUzUTzIbvxILZU6N0/edit?usp=sharing</li>\r\n\r\n<a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecomunityradio.com</a>\r\n<a href=\"http://thebeloitpod.libsyn.com/\">Read more at http://thebeloitpod.libsyn.com</a>','WADR Mornings Live! 9/8/2015','','inherit','open','open','','507-revision-v1','','','2015-09-08 16:25:12','2015-09-08 16:25:12','',507,'http://thebeloitpod.com/wordpress1/index.php/2015/09/08/507-revision-v1/',0,'revision','',0),(510,1,'2015-09-08 16:27:47','2015-09-08 16:27:47','Today\'s podcast is a repeat from the WADR Morning show. Dont forget you can chat with me every morning 7AM-8AM at <a href=\"https://www.facebook.com/pages/WADR-1035-LPFM-Mornings-with-Reese-Wood/1706069986295864?fref=ts\" target=\"_blank\">WADR 1035 LPFM Mornings with Reese Wood on Facebook.</a> If you check todays bonus content below you will find the slide presentation I used for this mornings live show. Thanks for staying tuned!\r\n\r\nLink to this mornings slide presentation- <a href=\"https://docs.google.com/presentation/d/1FZqCODoMIy5Om1-skhmAqcishIRUzUTzIbvxILZU6N0/edit?usp=sharing\" target=\"_blank\">WADR Mornings Live! 9/8/15 </a>\r\n\r\n<a href=\"http://janesvillecommunityradio.com/\" target=\"_blank\">janesvillecomunityradio.com</a>\r\n<a href=\"http://thebeloitpod.libsyn.com/\">Read more at http://thebeloitpod.libsyn.com</a>','WADR Mornings Live! 9/8/2015','','inherit','open','open','','507-revision-v1','','','2015-09-08 16:27:47','2015-09-08 16:27:47','',507,'http://thebeloitpod.com/wordpress1/index.php/2015/09/08/507-revision-v1/',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_signups` -- DROP TABLE IF EXISTS `wp_signups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_signups` ( `signup_id` bigint(20) NOT NULL auto_increment, `domain` varchar(200) NOT NULL default '', `path` varchar(100) NOT NULL default '', `title` longtext NOT NULL, `user_login` varchar(60) NOT NULL default '', `user_email` varchar(100) NOT NULL default '', `registered` datetime NOT NULL default '0000-00-00 00:00:00', `activated` datetime NOT NULL default '0000-00-00 00:00:00', `active` tinyint(1) NOT NULL default '0', `activation_key` varchar(50) NOT NULL default '', `meta` longtext, PRIMARY KEY (`signup_id`), KEY `activation_key` (`activation_key`), KEY `user_email` (`user_email`), KEY `user_login_email` (`user_login`,`user_email`), KEY `domain_path` (`domain`(140),`path`(51)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_signups` -- LOCK TABLES `wp_signups` WRITE; /*!40000 ALTER TABLE `wp_signups` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_signups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL default '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL default '0', `term_order` int(11) NOT NULL default '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (507,1,0),(517,1,0),(511,1,0),(94,1,0),(520,1,0),(515,1,0),(111,1,0),(116,1,0),(120,1,0),(119,1,0),(124,1,0),(127,1,0),(132,1,0),(136,1,0),(138,1,0),(141,1,0),(144,1,0),(148,1,0),(152,1,0),(155,1,0),(158,1,0),(161,1,0),(164,1,0),(167,1,0),(170,1,0),(173,1,0),(176,1,0),(179,1,0),(182,1,0),(184,1,0),(495,1,0),(192,1,0),(195,1,0),(211,1,0),(213,1,0),(216,1,0),(220,1,0),(225,1,0),(168,6,0),(196,6,0),(162,6,0),(241,6,0),(114,6,0),(242,1,0),(244,1,0),(252,1,0),(284,1,0),(344,1,0),(367,1,0),(369,1,0),(371,1,0),(373,1,0),(375,1,0),(377,1,0),(379,1,0),(390,1,0),(396,1,0),(409,1,0),(413,1,0),(413,8,0),(413,9,0),(413,10,0),(413,11,0),(416,1,0),(420,1,0),(422,1,0),(427,1,0),(427,13,0),(427,14,0),(427,12,0),(443,1,0),(451,1,0),(458,15,0),(459,15,0),(461,15,0),(462,15,0),(463,15,0),(464,15,0),(465,15,0),(470,15,0),(460,15,0),(472,15,0),(466,15,0),(467,15,0),(468,15,0),(469,15,0),(471,15,0),(477,1,0),(481,1,0),(485,1,0),(523,1,0),(526,1,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL auto_increment, `term_id` bigint(20) unsigned NOT NULL default '0', `taxonomy` varchar(32) NOT NULL default '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL default '0', `count` bigint(20) NOT NULL default '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,54),(5,5,'category','',0,0),(6,6,'ml-slider','',0,4),(7,7,'banner_groups','',0,0),(8,8,'post_tag','',0,1),(9,9,'post_tag','',0,1),(10,10,'post_tag','',0,1),(11,11,'post_tag','',0,1),(12,12,'post_tag','The Beloit Podcast',0,1),(13,13,'post_tag','',0,1),(14,14,'post_tag','',0,1),(15,15,'nav_menu','',0,15); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL auto_increment, `name` varchar(200) NOT NULL default '', `slug` varchar(200) NOT NULL default '', `term_group` bigint(10) NOT NULL default '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(6,'240','240',0),(5,'Forum','forum',0),(7,'Links & Sponsors','links-and-sponsors',0),(8,'\"open mick podcast\"','open-mick-podcast',0),(9,'the beloit podcast','the-beloit-podcast',0),(10,'OMP Radio','omp-radio',0),(11,'WADR','wadr',0),(12,'TBP','tbp',0),(13,'OMP','omp',0),(14,'Janesville community radio','janesville-community-radio',0),(15,'Menu 1','menu-1',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_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=MyISAM AUTO_INCREMENT=1244 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','ReeseWood'),(2,1,'first_name','ReeseWood'),(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,'wp_capabilities','a:2:{s:13:\"administrator\";b:1;s:13:\"bbp_keymaster\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp360_locks,wp390_widgets,wp410_dfw,addtoany_settings_pointer,black_studio_tinymce_widget,slidedeck_installation-discount,easmedia_pointer_pointer'),(13,1,'default_password_nag',''),(14,1,'show_welcome_panel','1'),(15,1,'session_tokens','a:1:{s:64:\"3d914b7735f5e7069713bd55cf1713268a39c6a606ba37c58ae665fb3a481b3f\";a:4:{s:10:\"expiration\";i:1444325463;s:2:\"ip\";s:13:\"76.228.234.21\";s:2:\"ua\";s:109:\"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36\";s:5:\"login\";i:1444152663;}}'),(16,1,'wp_dashboard_quick_press_last_post_id','525'),(1221,1,'meta-box-order_ngfb_page_ngfb-sharing','a:0:{}'),(1222,1,'metaboxhidden_ngfb_page_ngfb-sharing','a:0:{}'),(1223,1,'meta-box-order_ngfb_page_ngfb-setup','a:0:{}'),(1224,1,'metaboxhidden_ngfb_page_ngfb-setup','a:0:{}'),(17,1,'wp_user-settings','libraryContent=browse&wplink=1&editor=tinymce&mfold=o&urlbutton=none&posts_list_mode=list&imgsize=medium&align=center&advImgDetails=show'),(18,1,'wp_user-settings-time','1441729671'),(19,1,'last_activity','2015-10-07 18:15:42'),(20,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(21,1,'metaboxhidden_nav-menus','a:4:{i:0;s:23:\"add-buddypress-nav-menu\";i:1;s:8:\"add-post\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";}'),(22,1,'active','1'),(1225,1,'closedpostboxes_ngfb_page_ngfb-setup','a:0:{}'),(1084,1,'closedpostboxes_post','a:0:{}'),(1085,1,'metaboxhidden_post','a:6:{i:0;s:11:\"postexcerpt\";i:1;s:13:\"trackbacksdiv\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(1236,1,'nav_menu_recently_edited','15'),(1083,1,'powerpress_user','a:1:{s:19:\"dashboard_installed\";i:2;}'),(1234,1,'bp_xprofile_visibility_levels','a:1:{i:1;s:6:\"public\";}'),(1091,1,'lastvisit','1439069073'),(1092,1,'wpf_useroptions','a:3:{s:13:\"allow_profile\";b:1;s:6:\"notify\";b:1;s:13:\"notify_topics\";s:0:\"\";}'),(1093,0,'lastvisit','1439070436'),(1086,1,'slidedeck_default_stage_background','dark'),(1089,1,'closedpostboxes_banner','a:0:{}'),(1090,1,'metaboxhidden_banner','a:1:{i:0;s:7:\"slugdiv\";}'),(1087,1,'meta-box-order_banner','a:1:{s:6:\"normal\";s:76:\"postimagediv,banner_caption,my-custom-fields92fccfb30c3afbf2499464d7203a23f6\";}'),(1088,1,'_custom_banners_meta_box_order','metaboxes_v1'),(1166,1,'account_status','approved'),(1167,1,'role','admin'),(1243,1,'_um_last_login','1444152663'),(1208,1,'meta-box-order_toplevel_page_ngfb-general','a:0:{}'),(1209,1,'metaboxhidden_toplevel_page_ngfb-general','a:0:{}'),(1210,1,'closedpostboxes_toplevel_page_ngfb-general','a:0:{}'),(1214,1,'meta-box-order_ngfb_page_ngfb-style','a:0:{}'),(1215,1,'metaboxhidden_ngfb_page_ngfb-style','a:0:{}'),(1216,1,'closedpostboxes_ngfb_page_ngfb-style','a:0:{}'),(1217,1,'meta-box-order_ngfb_page_ngfb-advanced','a:0:{}'),(1218,1,'metaboxhidden_ngfb_page_ngfb-advanced','a:0:{}'),(1219,1,'closedpostboxes_ngfb_page_ngfb-advanced','a:0:{}'),(1220,1,'closedpostboxes_ngfb_page_ngfb-sharing','a:9:{i:0;s:32:\"ngfb_page_ngfb-sharing_pinterest\";i:1;s:31:\"ngfb_page_ngfb-sharing_linkedin\";i:2;s:29:\"ngfb_page_ngfb-sharing_buffer\";i:3;s:29:\"ngfb_page_ngfb-sharing_reddit\";i:4;s:31:\"ngfb_page_ngfb-sharing_managewp\";i:5;s:34:\"ngfb_page_ngfb-sharing_stumbleupon\";i:6;s:29:\"ngfb_page_ngfb-sharing_tumblr\";i:7;s:30:\"ngfb_page_ngfb-sharing_youtube\";i:8;s:28:\"ngfb_page_ngfb-sharing_skype\";}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `user_login` varchar(60) NOT NULL default '', `user_pass` varchar(64) 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(60) 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=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'ReeseWood','4d33079539fc64a8dc6714b8ed4769eb','ReeseWood','thebeloitpod@gmail.com','http://thebeloitpod.com','2015-05-11 16:32:55','',0,'ReeseWood'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_vw_lsrooms` -- DROP TABLE IF EXISTS `wp_vw_lsrooms`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_vw_lsrooms` ( `id` int(11) NOT NULL auto_increment, `name` varchar(64) NOT NULL, `owner` int(11) NOT NULL, `sdate` int(11) NOT NULL, `edate` int(11) NOT NULL, `btime` int(11) NOT NULL, `wtime` int(11) NOT NULL, `rdate` int(11) NOT NULL, `status` tinyint(4) NOT NULL, `type` tinyint(4) NOT NULL, `options` text, PRIMARY KEY (`id`), KEY `name` (`name`), KEY `status` (`status`), KEY `type` (`type`), KEY `owner` (`owner`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Video Whisper: Rooms - 2014@videowhisper.com'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_vw_lsrooms` -- LOCK TABLES `wp_vw_lsrooms` WRITE; /*!40000 ALTER TABLE `wp_vw_lsrooms` DISABLE KEYS */; INSERT INTO `wp_vw_lsrooms` VALUES (1,'ReeseWood',0,1439224104,1439224184,0,0,1439224104,0,1,NULL); /*!40000 ALTER TABLE `wp_vw_lsrooms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_vw_lwsessions` -- DROP TABLE IF EXISTS `wp_vw_lwsessions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_vw_lwsessions` ( `id` int(11) NOT NULL auto_increment, `session` varchar(64) NOT NULL, `username` varchar(64) NOT NULL, `room` varchar(64) NOT NULL, `message` text NOT NULL, `sdate` int(11) NOT NULL, `edate` int(11) NOT NULL, `status` tinyint(4) NOT NULL, `type` tinyint(4) NOT NULL, PRIMARY KEY (`id`), KEY `status` (`status`), KEY `type` (`type`), KEY `room` (`room`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Video Whisper: Subscriber Sessions - 2009@videowhisper.com'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_vw_lwsessions` -- LOCK TABLES `wp_vw_lwsessions` WRITE; /*!40000 ALTER TABLE `wp_vw_lwsessions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_vw_lwsessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_vw_sessions` -- DROP TABLE IF EXISTS `wp_vw_sessions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_vw_sessions` ( `id` int(11) NOT NULL auto_increment, `session` varchar(64) NOT NULL, `username` varchar(64) NOT NULL, `room` varchar(64) NOT NULL, `message` text NOT NULL, `sdate` int(11) NOT NULL, `edate` int(11) NOT NULL, `status` tinyint(4) NOT NULL, `type` tinyint(4) NOT NULL, PRIMARY KEY (`id`), KEY `status` (`status`), KEY `type` (`type`), KEY `room` (`room`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Video Whisper: Broadcaster Sessions - 2009@videowhisper.com'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_vw_sessions` -- LOCK TABLES `wp_vw_sessions` WRITE; /*!40000 ALTER TABLE `wp_vw_sessions` DISABLE KEYS */; INSERT INTO `wp_vw_sessions` VALUES (1,'ReeseWood','ReeseWood','ReeseWood','',1439224104,1439224184,1,1); /*!40000 ALTER TABLE `wp_vw_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpb2d_excluded_files` -- DROP TABLE IF EXISTS `wp_wpb2d_excluded_files`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_wpb2d_excluded_files` ( `file` varchar(255) NOT NULL, `isdir` tinyint(1) NOT NULL, UNIQUE KEY `file` (`file`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_wpb2d_excluded_files` -- LOCK TABLES `wp_wpb2d_excluded_files` WRITE; /*!40000 ALTER TABLE `wp_wpb2d_excluded_files` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpb2d_excluded_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpb2d_options` -- DROP TABLE IF EXISTS `wp_wpb2d_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_wpb2d_options` ( `name` varchar(50) NOT NULL, `value` varchar(255) NOT NULL, UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_wpb2d_options` -- LOCK TABLES `wp_wpb2d_options` WRITE; /*!40000 ALTER TABLE `wp_wpb2d_options` DISABLE KEYS */; INSERT INTO `wp_wpb2d_options` VALUES ('database_version','2'),('oauth_state','access'),('request_token','EJ6vugmiHtUYZ5Co'),('request_token_secret','K1VqE1hBYjgqjHz9'),('access_token','ilec0agvuvk1ww7j'),('access_token_secret','22f6ztpue0qz3wn'),('store_in_subfolder',''),('dropbox_location',''),('in_progress',''),('is_running',''),('last_backup_time','1444268861'); /*!40000 ALTER TABLE `wp_wpb2d_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpb2d_processed_dbtables` -- DROP TABLE IF EXISTS `wp_wpb2d_processed_dbtables`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_wpb2d_processed_dbtables` ( `name` varchar(255) NOT NULL, `count` int(11) NOT NULL default '0', UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_wpb2d_processed_dbtables` -- LOCK TABLES `wp_wpb2d_processed_dbtables` WRITE; /*!40000 ALTER TABLE `wp_wpb2d_processed_dbtables` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpb2d_processed_dbtables` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpb2d_processed_files` -- DROP TABLE IF EXISTS `wp_wpb2d_processed_files`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_wpb2d_processed_files` ( `file` varchar(255) NOT NULL, `offset` int(11) NOT NULL default '0', `uploadid` varchar(50) default NULL, UNIQUE KEY `file` (`file`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_wpb2d_processed_files` -- LOCK TABLES `wp_wpb2d_processed_files` WRITE; /*!40000 ALTER TABLE `wp_wpb2d_processed_files` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpb2d_processed_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_0007b1d_4' -- DELIMITER ;; DELIMITER ; /*!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 2016-02-07 10:03:04